,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()`
Los beneficios de comprar resúmenes en Stuvia estan en línea:
Garantiza la calidad de los comentarios
Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!
Compra fácil y rápido
Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.
Enfócate en lo más importante
Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable.
Así llegas a la conclusión rapidamente!
Preguntas frecuentes
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
100% de satisfacción garantizada: ¿Cómo funciona?
Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.
Who am I buying this summary from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller emiliophd. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy this summary for 8,35 €. You're not tied to anything after your purchase.