arrow functions in es6 code example
Example 1: arrow function javascript
function Welcome(){
console.log("Normal function");
}
const Welcome = () => {
console.log("Normal function");
}
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: js arrow function
const add = (a, b) => a + b;
const square = num => {
return num * num;
}
const rollDie = () => (
Math.floor(Math.random() * 6) + 1
)
Example 4: es6 arrow function
const multiplyES6 = (x, y) => x * y;
Example 5: arrow function javascript
const suma = (num1, num2) => num1+num2
console.log(suma(2,3));
Example 6: how to make javascript function consise
multiplyfunc = (a, b) => { return a * b; }