Waypoint Iterate over Arrays with map - GJSmith3rd/FreeCodeCamp-BootCamp GitHub Wiki
Contact me
Gilbert Joseph Smith III
Github | FreeCodeCamp | CodePen | LinkedIn | Blog/Site | E-Mail
Iterate over Arrays with map
Using map is the best way to iterate through an array or object. Map uses a function to pretty much do whatever you want it to do. It will pass each value to the callback function.
//Use map to add three to each value in the array
var array = [1,2,3,4,5];
array = array.map(function(val){
return val + 3;
});