Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript nested array destructuring

let arr = [1, 2, 3, 4, [100, 200, 300], 5, 6, 7];

// nested array destructuring
const [a, , , , [, b, ,], , , ,] = arr;

console.log(a);
// expected output "1"

console.log(b);
// expected output "200"
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #javascript #nested #array #destructuring
ADD COMMENT
Topic
Name
8+3 =