foreach javascript arrow function
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));
foreach javascript arrow function
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));
How does forEach & arrow function works?
const products = [
{ name: 'laptop', price: 32000, brand: 'Lenovo', color: 'Silver' },
{ name: 'phone', price: 700, brand: 'Iphone', color: 'golden' },
{ name: 'watch', price: 3000, brand: 'Casio', color: 'Yellow' },
{ name: 'sunglass', price: 300, brand: 'Ribon', color: 'blue' },
{ name: 'camera', price: 9000, brand: 'Lenovo', color: 'gray' },
];
//Total Products Price by Using forEach
let totalPrice = 0;
products.forEach(product => {
totalPrice += product.price;
})
console.log(totalPrice);
//Expected output: 45000
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