for of loop index code example
Example 1: for of get index
for (const v of ['a', 'b', 'c']) {
console.log(v)
}
for (const [i, v] of ['a', 'b', 'c'].entries()) {
console.log(i, v)
}
Example 2: javascript for...of index
for (const [i, v] of ['a', 'b', 'c'].entries()) {
console.log(i, v)
}
Example 3: for loop with index python3
colors = ["red", "green", "blue", "purple"]
for i in range(len(colors)):
print(colors[i])
Example 4: python for loop index
presidents = ["Washington", "Adams", "Jefferson", "Madison", "Monroe", "Adams", "Jackson"]
for num, name in enumerate(presidents, start=1):
print("President {}: {}".format(num, name))
Example 5: javascript for of index
let array = ["foo", "bar"]
let low = 0;
let high = array.length;
for(let i = low; i < high; i++) {
console.log(i);
console.log(array[i]);
}
Example 6: const calculateTotalImperative = (items, tax) => { let result = 0; for (const item of items) { const { price, taxable } = item; if (taxable) { result += price * Math.abs(tax); } result += price; } return result; };
const calculateTotalImperative = (items, tax) => {
let result = 0;
for (const item of items) {
const { price, taxable } = item;
if (taxable) {
result += price * Math.abs(tax);
}
result += price;
}
return result;
};