How to use Array.reduce() method In Javascript

  • First, get the array of elements.
  • Pass it to a function, which calls reduce() method on the array element.
  • Return true if each element matches the first element of the array.

Example: This example uses an array.reduce() method to print the false for the given array. 

Javascript
let arr = ["GFG", "GFG", "GFG", "GFG"];
function allEqual(arr) {
    if (!arr.length) return true;
    return arr.reduce(function (a, b) { 
           return (a === b) ? a : (!b); 
           }) === arr[0];
}
console.log(allEqual(arr));   

Output
true

How to check all values of an array are equal or not in JavaScript ?

Ensuring all values in an array are equal is a common task in JavaScript, useful for validating data consistency and simplifying conditional checks. This guide provides an overview of efficient methods to determine if an array contains identical elements.

Below are the approaches used to check if all values of an array are equal or not in JavaScript:

Table of Content

  • 1. Using Array.every() method
  • 2. Using Array.reduce() method
  • 3. Using Set
  • 4. Using for…of loop
  • 5. Using filter() Method

Similar Reads

1. Using Array.every() method

First, get the array of elements.Pass it to an arrow function, which calls every() method on each array element and returns true if each element matches the first element of the array....

2. Using Array.reduce() method

First, get the array of elements.Pass it to a function, which calls reduce() method on the array element.Return true if each element matches the first element of the array....

3. Using Set

In this article, we will pass the array to the Set constructor, and using the size property we can access the length of the array. As we know set stores unique elements and if the size of the set is 1 then it denotes that all the elements in the array are equal....

4. Using for…of loop

The for…of loop iterates over the iterable objects (like Array, Map, Set, arguments object, …,etc) and will check the element is same as the first element....

5. Using filter() Method

In this approach, we will filter all the elements which are equal and compare the length of the new array with the original array....