$100 Website Offer

Get your personal website + domain for just $100.

Limited Time Offer!

Claim Your Website Now

Map, Reduce and Filter Method in JavaScript

map, filter, and reduce are higher-order array methods in JavaScript that provide powerful ways to manipulate arrays and transform data. Here’s an overview of each method:

1. map() Method:

The map() method creates a new array by applying a function to each element of an existing array. It returns a new array with the results of calling the provided function on every element in the original array.

let numbers = [1, 2, 3, 4, 5];

let doubled = numbers.map(num => num * 2);
console.log(doubled); // Output: [2, 4, 6, 8, 10]

2. filter() Method:

The filter() method creates a new array with all elements that pass a test provided by a callback function. It returns a new array containing only the elements for which the callback function returns true.

let numbers = [1, 2, 3, 4, 5];

let evens = numbers.filter(num => num % 2 === 0);
console.log(evens); // Output: [2, 4]

3. reduce() Method:

The reduce() method executes a reducer function on each element of the array, resulting in a single output value. It’s useful for calculating sums, aggregating data, or performing any operation that requires combining elements of an array.

let numbers = [1, 2, 3, 4, 5];

let sum = numbers.reduce((accumulator, currentValue) => accumulator + currentValue, 0);
console.log(sum); // Output: 15 (1 + 2 + 3 + 4 + 5)

In the reduce() method:

  • The accumulator parameter stores the accumulated result of the computation.
  • The currentValue parameter represents the current element being processed.
  • The 0 at the end of the reduce() call is the initial value of the accumulator.

These array methods are powerful tools for transforming and manipulating data in JavaScript. They allow you to write concise and expressive code for common array operations, making your code more readable and maintainable.

Related Posts

Smarter Medical Travel Planning with MyMedicPlus Healthcare Assistance

Navigating the international medical landscape can often feel like an overwhelming, uphill battle for individuals seeking specialized clinical treatment. Fortunately, the emergence of advanced digital health ecosystems…

Read More

Smarter Hospital Selection With MyHospitalNow and Cost Transparency

Introduction Imagine sitting at your kitchen table late at night, staring at a medical diagnosis or a recommendation for an upcoming surgery. Your mind immediately floods with…

Read More

Accelerating Your Engineering Impact with the Certified FinOps Professional Certification

Introduction In the rapidly evolving landscape of cloud-native infrastructure, managing cloud expenditure has become as critical as maintaining system uptime. The Certified FinOps Professional certification offers a…

Read More

Step-by-Step Tutorial: Reset WordPress Admin Password Using WP-CLI Commands

What is WP-CLI? WP-CLI is the command-line tool for managing WordPress without opening the browser. You can manage users, plugins, themes, database, cache, posts, and even reset…

Read More

Understanding the Value of the Certified FinOps Manager for DevOps Professionals

Introduction In the current landscape of cloud-native infrastructure, managing costs has transitioned from a back-office accounting task to a core engineering responsibility. The Certified FinOps Manager credential…

Read More

Best Travel Forum to Ask Questions & Plan Trips | HolidayLandmark

The Shift from Search Bars to Community Chats Imagine planning a two-week dream vacation to Tokyo. You type your query into a traditional search engine, and you…

Read More
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x