Looking for WMC - Webprogrammierung und Mobile Computing - 3AHIF - SJ2526 test answers and solutions? Browse our comprehensive collection of verified answers for WMC - Webprogrammierung und Mobile Computing - 3AHIF - SJ2526 at moodle.spengergasse.at.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Was ist das Ergebnis des folgenden Codes?
const numbers = [1, 2, 3, 4];
const result = numbers.map(n => n * 2);
console.log(result);
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);
Welche der folgenden Array-Methoden kann verwendet werden, um ein einzelnes Ergebnis durch die Iteration eines Arrays zu berechnen?
Welche dieser Methoden verändert das ursprüngliche Array?
Wie unterscheidet sich find() von filter()?