Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 18, 2022 01:34 pm GMT

Paracetamol.js| 102: Explica este cdigo JavaScript

Explica este cdigo JavaScript

Dificultad: Intermedio

const arr = [1, 2, undefined, 4];const [a, b , c=3, d] = arr;console.log(a, b, c ,d);

A. a, b, null, d
B. 1, 2, undefined, 4
C. 1, 2, 3, 4
D. a, b, c, d

Respuesta en el primer comentario.


Original Link: https://dev.to/duxtech/paracetamoljs-102-explica-este-codigo-javascript-11f8

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To