✅ 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 result = numbers.map(n => n * 2);
console.log(result);