Answers for "const x of array"

5

javascript for...of index

for (const [i, v] of ['a', 'b', 'c'].entries()) {
  console.log(i, v)
}
Posted by: Guest on November-29-2019
1

for of loop in es6

let colors = ['Red', 'Blue', 'Green'];
for (let color of colors){
	console.log(color);
}
Posted by: Guest on April-25-2020
2

javascript for of

const numbers = [1,2,3,4];

for(const item of numbers){
  console.log(item);
}
Posted by: Guest on October-04-2020
0

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;
};
Posted by: Guest on August-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language