javascript functions es6 code example
Example 1: Arrow Functions
// The usual way of writing function
const magic = function() {
return new Date();
};
// Arrow function syntax is used to rewrite the function
const magic = () => {
return new Date();
};
//or
const magic = () => new Date();
Example 2: arrow function map js
const exampleArray = ['aa','bbc','ccdd'];
console.log(exampleArray.map(a => a.length));
//Would print out [2,3,4]
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;
};
//if the function got only one parameter
const square1 = (x) => { return x * x; };
const square2 = x => x * x;
// empty parameter
const horn = () => {
console.log("Toot");
};
Example 5: es6 functions
const add = (n1, n2) => n1 + n2