js function es6 code example
Example 1: fonction fleche javascript
let mafonction = () => console.log('test') ;
mafonction()
Example 2: () => javascript
var a = [
"We're up all night 'til the sun",
"We're up all night to get some",
"We're up all night for good fun",
"We're up all night to get lucky"
];
var a2 = a.map(function (s) { return s.length });
var a3 = a.map( s => s.length);
Example 3: javascript es6
ES6 refers to version 6 of the ECMA Script programming language
It is a major enhancement to the JavaScript language, and adds many more
features intended to make large-scale software development easier.
ECMAScript, or ES6, was published in June 2015.
It was subsequently renamed to ECMAScript 2015.
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