Array Destructuring

by nevkatz

JavaScript

let arr =[1, 2, 3];


let [a, b, c] = arr;

console.log(b);