,1. Which of the following methods will concatenate arrays without altering
the original arrays?
- A. `Array.prototype.push()`
- B. `Array.prototype.concat()`
- C. `Array.prototype.splice()`
- D. `Array.prototype.unshift()`
Answer: B. Array.prototype.concat()
Rationale: `concat()` method returns a new array, combining elements
from the original arrays without modifying them.
2. What is the output of the following code snippet?
```javascript
const obj = { a: 1, b: 2, c: 3 };
const { a, ...rest } = obj;
console.log(rest);
```
- A. `{ b: 2, c: 3 }`
- B. `{ a: 1, b: 2 }`
- C. `{ c: 3 }`
- D. `undefined`
, Answer: A. { b: 2, c: 3 }
Rationale: Using the rest operator (`...rest`), the code collects the
remaining properties into a new object `rest` after destructuring `a`.
3. In JavaScript, which call is made as soon as a Promise object is created?
- A. `Promise.prototype.then()`
- B. `Promise.prototype.catch()`
- C. `Promise.prototype.finally()`
- D. The executor function passed to the `Promise` constructor
Answer: D. The executor function passed to the Promise constructor
Rationale: When a Promise is created, the executor function is
immediately executed.
4. Which array method is used to iterate over all elements of an array and
returns a single accumulated result?
- A. `Array.prototype.filter()`
- B. `Array.prototype.forEach()`
- C. `Array.prototype.reduce()`
- D. `Array.prototype.map()`
Voordelen van het kopen van samenvattingen bij Stuvia op een rij:
Verzekerd van kwaliteit door reviews
Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!
Snel en makkelijk kopen
Je betaalt supersnel en eenmalig met iDeal, creditcard of Stuvia-tegoed voor de samenvatting. Zonder lidmaatschap.
Focus op de essentie
Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!
Veelgestelde vragen
Wat krijg ik als ik dit document koop?
Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.
Tevredenheidsgarantie: hoe werkt dat?
Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.
Van wie koop ik deze samenvatting?
Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper emiliophd. Stuvia faciliteert de betaling aan de verkoper.
Zit ik meteen vast aan een abonnement?
Nee, je koopt alleen deze samenvatting voor €8,34. Je zit daarna nergens aan vast.