Answers for "How to Destructuring Array in Javascript?"

1

How to Destructuring Array in Javascript?

//destructuring array 
const alphabet = ['a', 'b', 'c', 'b', 'e'];
const [a, b] = alphabet;
console.log(a, b);
//Expected output: a b
Posted by: Guest on September-03-2021
1

destructuring Array in JavaScript

let [greeting = "hi",name = "Sarah"] = ["hello"];

console.log(greeting);//"Hello"
console.log(name);//"Sarah"
Posted by: Guest on May-25-2021
0

mdn destructuring

const x = [1, 2, 3, 4, 5];
const [y, z] = x;
console.log(y); // 1
console.log(z); // 2
Posted by: Guest on November-07-2020

Code answers related to "How to Destructuring Array in Javascript?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language