es6 function example
Example 1: js anonymous function es6
var multiplyES5 = function(x, y) {
return x * y;
};
const multiplyES6 = (x, y) => { return x * y };
Example 2: arrow function javascript
const suma = (num1, num2) => num1+num2
console.log(suma(2,3));
Example 3: how to make javascript function consise
multiplyfunc = (a, b) => { return a * b; }
Example 4: arrow function javascript
const power = (base, exponent) => {
let result = 1;
for (let count = 0; count < exponent; count++) {
result *= base;
}
return result;
};
const square1 = (x) => { return x * x; };
const square2 = x => x * x;
const horn = () => {
console.log("Toot");
};
Example 5: es6 functions
const add = (n1, n2) => n1 + n2