how to loop to particular index of an array in javascript code example
Example 1: iterate array javascript
array = [ 1, 2, 3, 4, 5, 6 ];
for (index = 0; index < array.length; index++) {
console.log(array[index]);
}
Example 2: how to cycle through an array js
const _ = require("lodash")
_.forEach([1, 2], function(value) {
console.log(value)
});
_.forEach({ 'a': 1, 'b': 2 }, function(value, key) {
console.log(key)
})
function logArrayElements(element, index, array) {
console.log("a[" + index + "] = " + element)
}
[2, 5, 9].forEach(logArrayElements)