Slide 25
Slide 25 text
Map
array.map(function(elem, index, array) {
...
}
Example: convert Fahrenheit temps to Celsius.
var fahrenheit = [0, 32, 45, 50, 75, 80, 99, 120];
var celcius = fahrenheit.map(function(elem) {
return Math.round((elem - 32) * 5 / 9);
});
Formula :
Use it when: You want to translate/map all elements in an array
to another set of values.