arrowhead function js code example
Example 1: javascript arrow function
let add = function(x,y) {
return x + y;
}
console.log(add(10,20));
let add = (x,y) => x + y;
console.log(add(10,20));
let add = (x, y) => { return x + y; };
Example 2: javascript arrow function
let errow = () => {
};
Or
let errow = ('paramiter') => {
}
Example 3: () => javascript
var a = [
"We're up all night 'til the sun",
"We're up all night to get some",
"We're up all night for good fun",
"We're up all night to get lucky"
];
var a2 = a.map(function (s) { return s.length });
var a3 = a.map( s => s.length);