Map,Reduce,For-each Loops in js
Rohit

Rohit @rohiitbagal

About: Always ready for adopting new one....

Location:
Pune,India
Joined:
Feb 14, 2024

Map,Reduce,For-each Loops in js

Publish Date: Apr 16 '24
2 2

Reduce:
The reduce() function iterates over the elements of an array and accumulates a single result by applying a provided function against an accumulator and each element in the array.

const numbers = [1, 2, 3, 4, 5];
const sum = numbers.reduce((accumulator, currentValue) => accumulator + currentValue, 0);
console.log(sum); // Output: 15
Enter fullscreen mode Exit fullscreen mode

Industry Scenario: Consider an e-commerce platform where you need to calculate the total price of items in a shopping cart. You have an array of objects representing each item with properties like price and quantity. You can use reduce() to sum up the total price:

const cartItems = [
  { name: 'Shirt', price: 20, quantity: 2 },
  { name: 'Pants', price: 30, quantity: 1 },
  { name: 'Shoes', price: 50, quantity: 1 }
];

const totalPrice = cartItems.reduce((total, item) => total + (item.price * item.quantity), 0);
console.log(totalPrice); // Output: 120
Enter fullscreen mode Exit fullscreen mode

ForEach:
The forEach() function executes a provided function once for each array element.

const numbers = [1, 2, 3, 4, 5];
numbers.forEach(number => console.log(number));
// Output:
// 1
// 2
// 3
// 4
// 5
Enter fullscreen mode Exit fullscreen mode

Industry Scenario: Consider a scenario in a project management tool where you want to update the status of each task in a list. You can use forEach() to iterate through the array of tasks and update their status:

const tasks = [
  { id: 1, name: 'Task 1', status: 'Pending' },
  { id: 2, name: 'Task 2', status: 'InProgress' },
  { id: 3, name: 'Task 3', status: 'Pending' }
];

tasks.forEach(task => {
  if (/* condition for updating status */) {
    task.status = 'Completed';
  }
});
Enter fullscreen mode Exit fullscreen mode

reduce()

const cartItems = [
  { name: 'Shirt', price: 20, quantity: 2 },
  { name: 'Pants', price: 30, quantity: 1 },
  { name: 'Shoes', price: 50, quantity: 1 }
];

const totalPrice = cartItems.reduce((total, item) => total + (item.price * item.quantity), 0);
console.log(totalPrice); // Output: 120 
Enter fullscreen mode Exit fullscreen mode

Comments 2 total

  • Spandan Sehgal
    Spandan SehgalApr 17, 2024

    Overall well written! But ig you missed the map function and it repeated the reduce function again.

    Keep up the good work!

    • Rohit
      RohitApr 17, 2024

      Ya bro ... thanks for supporting and giving suggestions...i will change that ... thanks for your Love and support 💕

Add comment