This is the second lesson of the ES 6 course and it teaches functions: Arrow functions (full name arrow function expressions) const upperizedNames = [‘Farrin’, ‘Kagure’, ‘Asser’].map(function(name) { return name.toUpperCase(); […]
Read more
If you haven't found a solution you haven't thought long enough
This is the second lesson of the ES 6 course and it teaches functions: Arrow functions (full name arrow function expressions) const upperizedNames = [‘Farrin’, ‘Kagure’, ‘Asser’].map(function(name) { return name.toUpperCase(); […]
Read moreECMAScript 6 (or ES6) is a massive improvement to Javascript. It supports default parameters, template literals, multi-line strings, destructuring assignment, enhanced object literals, arrow functions, promises, block-scoped, constructs: let and […]
Read more