Friday, September 5, 2025
HomeLanguagesJavascriptChaining of Array Methods in JavaScript

Chaining of Array Methods in JavaScript

There are some methods in JavaScript that can loop through the array. We already have a knowledge about these array methods.

  1. Filter method ( filter())
  2. Map method ( map())
  3. Reduce method ( reduce())
  4. Find method ( find())
  5. Sort method ( sort())

We will learn how to chain all the array methods together.

Example:




const products = [
  
    // Here we create an object and each
    // object has a name and a price
    { name: 'dress', price: 600 },
    { name: 'cream', price: 60 },
    { name: 'book', price: 200 },
    { name: 'bottle', price: 50 },
    { name: 'bedsheet', price: 350 }
];


We want to do two things.

  1. Filter those elements whose price is greater than 100 using filter() method.
  2. Map those elements to a new array with a new sale price(50% off).

Example:




<script>
    const products = [
  
        // Here we create an object and each
        // object has a name and a price
        { name: 'dress', price: 600 },
        { name: 'cream', price: 60 },
        { name: 'book', price: 200 },
        { name: 'bottle', price: 50 },
        { name: 'bedsheet', price: 350 }
    ];
  
    // Filters the elements with 
    // price above 100
    const filtered = products.filter(
        product => product.price > 100);
  
    const sale = filtered.map(product => {
        return `the ${product.name} is 
        ${product.price / 2} rupees`;
    });
  
    // log the sale price to console
    console.log(sale);
</script>


Output:

A quicker way to achieve this is by using array method chaining. All the array methods work on arrays and return arrays. So we can easily chain these methods.

Example:




<script>
    const products = [
        { name: 'dress', price: 600 },
        { name: 'cream', price: 60 },
        { name: 'book', price: 200 },
        { name: 'bottle', price: 50 },
        { name: 'bedsheet', price: 350 }
    ];
  
    // Writing the different array methods
    // on different lines increases the
    // readability
    const sale = products
        .filter(product => product.price > 100)
        .map(product => `the ${product.name} 
            is ${product.price / 2} rupees`);
  
    document.write(sale);
</script>


Output:

Conclusion:

  1. The output in both the cases remains same. The second method is called chaining of array methods which makes the code a little more concise.
  2. Since the filter method returns an array we can chain it to the map method which works on an array and vice-versa.
  3. This process can be applied to all the array methods which makes the code concise.
  4. This method is not only applicable for arrays, but we can use them on strings also, as long as the methods return and work on strings. The same principle will be applied.
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32269 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6638 POSTS0 COMMENTS
Nicole Veronica
11802 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11866 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7027 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS