node arrow function code example
Example 1: js arrow function
const add = (a, b) => a + b;
const square = num => {
return num * num;
}
const rollDie = () => (
Math.floor(Math.random() * 6) + 1
)
Example 2: javascript arrow function
let errow = () => {
};
Or
let errow = ('paramiter') => {
}
Example 3: es6 arrow function
var phraseSplitterEs5 = function phraseSplitter(phrase) {
return phrase.split(' ');
};
const phraseSplitterEs6 = phrase => phrase.split(" ");
console.log(phraseSplitterEs6("ES6 Awesomeness"));