simplification Syntax
For loop in JS
// output: John, Mathew, Luke, Mark, Abraham, Issac
Usual way:
const names = ['John', 'Mathew', 'Luke', 'Mark', 'Abraham', 'Issac'];
for (let index = 0; index < names.length; index++) {
const element = names[index];
console.log(e...
shijoshaji.hashnode.dev3 min read