JavaScript Use Destructuring to get values from arrays and objects
https://www.linkedin.com/pulse/javascript-use-destructuring-get-values-from-arrays-objects-svekis- Destructuring is a feature in JavaScript Use Destructuring to get values from arrays Make use of destructuring to extract values from arrays and objects into variables: // Destructuring arrays const colors = [‘red’, ‘green’, ‘blue’]; const [first, second, third] = colors; // Destructuring objects const person = { name: ‘John Doe’, age: 30, job: … Read more