JavaScript Interview Cheat sheet
Destructuring in javascript ✨
The destructuring assignment syntax is a JavaScript expression that makes it possible to assign values from arrays, or properties from objects, into distinct variables.
Let's Understand by Example
let a, b, rest;
[a, b] ...