javascript loop through array
var colors = ["red","blue","green"];
colors.forEach(function(color) {
console.log(color);
});
javascript loop through array
var colors = ["red","blue","green"];
colors.forEach(function(color) {
console.log(color);
});
javascript loop
let array = ['Item 1', 'Item 2', 'Item 3'];
array.forEach(item => {
console.log(item); // Logs each 'Item #'
});
loop an array in javascript
let array = ["loop", "this", "array"]; // input array variable
for (let i = 0; i < array.length; i++) { // iteration over input
console.log(array[i]); // logs the elements from the current input
}
function range() as range js
function range(start, end) {
/* generate a range : [start, start+1, ..., end-1, end] */
var len = end - start + 1;
var a = new Array(len);
for (let i = 0; i < len; i++) a[i] = start + i;
return a;
}
javascript create range with a loop
function createRange(min, max) {
var range = [];
for (let i = min; i <= max; i++) {
range.push(i);
}
return range;
}
createRange(1, 5)
// => [1, 2, 3, 4, 5]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us