js arrow function if 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: arrow function javascript
function (param) {
var a = param * 3;
return a;
}
(a, b) => {
let c = (a * b) + 3;
return c;
}
Example 3: 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;