Skip to main content
  • higher order methods

Map

  • creates a new array by performing some action on each element
    • forEach does not do this , but you can just iterate though it
    • let a = num.forEach is not possible

Filter

    • Does some filtering based on a function and makes new array

Reduce

  • Traverses through the array and returns smaller dimesion value