array map javascript mdn code example
Example 1: javascript map array
const myArray = ['Sam', 'Alice', 'Nick', 'Matt'];
const newArray = myArray.map(name => {
return 'My name is ' + name;
});
console.log(newArray);
const anotherArray = myArray.map((value, index) => index + ": " + value);
console.log(anotherArray);
console.log(myArray);
Example 2: javascript map
array.map((item) => {
return item * 2
}
Example 3: array mdn map
let new_array = arr.map(function callback( currentValue[, index[, array]]) {
}[, thisArg])