arrow function with map javascript code example
Example 1: array map arrow function
materials.map((str) => {
const {length} = str;
return length;
});
Example 2: Arrow Functions
const magic = function() {
return new Date();
};
const magic = () => {
return new Date();
};
const magic = () => new Date();
Example 3: arrow function map js
const exampleArray = ['aa','bbc','ccdd'];
console.log(exampleArray.map(a => a.length));
Example 4: es6 arrow function
const prices = smartPhones.map(smartPhone => smartPhone.price);
console.log(prices);