why use arrow function in javascript code example
Example 1: js anonymous function es6
var multiplyES5 = function(x, y) {
return x * y;
};
const multiplyES6 = (x, y) => { return x * y };
Example 2: 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 3: arrow function javascript
let myFunction = (arg1, arg2, ...argN) => expression
let myFunction = (arg1, arg2, ...argN) => {
statement(s)
}
let hello = (arg1,arg2) => "Hello " + arg1 + " Welcome To "+ arg2;
console.log(hello("User","Grepper"))
Example 4: () => 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);
Example 5: arrow function javascript
function (a){
return a + 100;
}
(a) => {
return a + 100;
}
(a) => a + 100;
a => a + 100;
Example 6: arrow function javascript
function (param) {
var a = param * 3;
return a;
}
(a, b) => {
let c = (a * b) + 3;
return c;
}