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...
Nov 19, 20223 min read75