✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Was passiert im folgenden Code, und welche Aussagen sind korrekt?
const a = [1, 2];const b = [3, 4];const c = [...a, ...b];c[0] = 99;console.log(a, c);