#es6
Read more stories on Hashnode
Articles with this tag
Before 'const' and 'let' introduced, 'var' had been used for declaring variables. It caused a lot of issues. We understand we should not use the 'var'...
Before Destructuring assignment Object const person = { name: 'Grace', age: 18, }; const name = person.name; const age =...