Destructuring in JavaScript
Destructuring is a modern ES6 JavaScript features
It helps to developer let extract values from array , objects and assign them to variable.
//aam zindagi
const arr = [10, 20, 30];
const a = arr[0];
c
amitdewanganblog.hashnode.dev1 min read