✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Was ist das Ergebnis des folgenden Codes?
const numbers = [1, 2, 3, 4]; const sum = numbers.reduce((acc, n) => acc + n, 10); console.log(sum);