Array What is an Array? An Array object is a collection of multiple items in a single variable name. const names = ['John', 'Steve', 'Paul']; console.log(names) // ['John', 'Steve', 'Paul'] console.log(names.length) // 3 console.log(names[2]) // Paul...
abhishek7329.hashnode.dev5 min read
No responses yet.