Array/Object Destructuring in Javascript
What is destructuring?
The idea of restructuring is to take an object or an array and convert it into smaller objects or elements or smaller variables. So let's take a simple example
//array of alphabets
const alphabets = [ 'A','B','C','D','E']
//arr...
itsmanjiric.hashnode.dev6 min read