what is js.map code example
Example 1: javascript map
array.map((item) => {
return item * 2
}
Example 2: map javascript
function each(collection, action) {
if (Array.isArray(collection)) {
for (var i = 0; i < collection.length; i++) {
action(collection[i], i, collection);
}
} else {
for (var key in collection) {
action(collection[key], key, collection);
}
}
}
Example 3: javascript map
The map() method creates a new array with the results of calling a provided function on every element in the calling array.