javascript arrow fuctions 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 (a, b){
let chuck = 42;
return a + b + chuck;
}
(a, b) => {
let chuck = 42;
return a + b + chuck;
}
Example 3: es6 arrow function
var phraseSplitterEs5 = function phraseSplitter(phrase) {
return phrase.split(' ');
};
const phraseSplitterEs6 = phrase => phrase.split(" ");
console.log(phraseSplitterEs6("ES6 Awesomeness"));