DEV Community

Discussion on: The Most POWERFUL [JavaScript] Function

Collapse
 
cleancodestudio profile image
Clean Code Studio

You can use big-o-notation to determine the performance of reduce at scale just like with any other traditional looping function.

It's linear time O(n) if you just run through each element in the array one time which is the default behavior of reduce.