Answers for "difference between foreach and map in js"

20

difference between foreach and map in js

forEach() just loop through the elements. It's throws away return values and always returns undefined.The result of this method does not give us an output .

map() loop through the elements allocates memory and stores return values by iterating main array

Example:

   var numbers = [2,3,5,7];

   var forEachNum = numbers.forEach(function(number){
      return number
   })
   console.log(forEachNum)
   //output undefined

   var mapNum = numbers.map(function(number){
      return number
   })
   console.log(mapNum)
   //output [2,3,5,7]
map() is faster than forEach()
Posted by: Guest on April-23-2020

Code answers related to "difference between foreach and map in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language