arrow function javascript 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: es6 arrow function
const multiplyES6 = (x, y) => 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: arrow function javascript
function (a){
return a + 100;
}
(a) => {
return a + 100;
}
(a) => a + 100;
a => a + 100;
Example 5: js arrow function
hello = () => {
return "Hi All";
}
Example 6: arrow function javascript
function (a, b){
return a + b + 100;
}
(a, b) => a + b + 100;
let a = 4;
let b = 2;
function (){
return a + b + 100;
}
let a = 4;
let b = 2;
() => a + b + 100;