About 18,300,000 results
Open links in new tab
  1. Array.prototype.reduce () - JavaScript | MDN

    Jul 20, 2025 · It runs a "reducer" callback function over all elements in the array, in ascending-index order, and accumulates them into a single value. Every time, the return value of …

  2. JavaScript Array reduce () Method - W3Schools

    Description The reduce() method executes a reducer function for array element. The reduce() method returns a single value: the function's accumulated result. The reduce() method does …

  3. reduce () in Python - GeeksforGeeks

    Sep 20, 2025 · reduce () function (from functools) applies a function cumulatively to an iterable, reducing it to a single value. It’s handy for concise tasks like summing, multiplying (factorial), …

  4. REDUCE Definition & Meaning - Merriam-Webster

    The meaning of REDUCE is to draw together or cause to converge : consolidate. How to use reduce in a sentence. Synonym Discussion of Reduce.

  5. Guide to the JavaScript Reduce () Method - Built In

    Feb 3, 2025 · The reduce() method in JavaScript can be used for data manipulation tasks like calculating the sum, product or average of elements in an array, flattening an array, finding the …

  6. How Reduce Work in JS - GeeksforGeeks

    Jul 23, 2025 · The reduce () method in JavaScript is used to iterate over an array and accumulate a single result based on a callback function. It works by iterating through each element in the …

  7. REDUCE | English meaning - Cambridge Dictionary

    To reduce someone or something to a particular state is to cause that person or thing to be in that state:

  8. JavaScript reduce Explained - milddev.com

    Jun 27, 2025 · Learn what JavaScript reduce does and see practical examples for summing, flattening, and building objects from arrays.

  9. The JavaScript Reduce Method for Beginners: A Step-by-Step Guide

    Feb 14, 2025 · In this guide, we’ve covered the basics of the reduce method, including its syntax, examples, and best practices. With this knowledge, you’re ready to start using the reduce …

  10. Javascript reduce () method and some examples to master it.

    This tutorial covers the usage of the reduce () method in JavaScript, enabling you to perform calculations, aggregate values, and transform arrays into single values efficiently.