Here, we will talk about examples on de-structuring, rest/spread operators and template literals
De-structuring assignment
Array De-structuring Example
let arr = ["Art", "Vandelay"];
let [firstName, lastName] = arr;
console.log(firstName); // Art
co...