12 Things You Need To Know About ECMAScript 6
ECMAScript 6 is the next version of the JavaScript standard.
Here are the 12 cool things you need to know about ES6:
1. Arrow functions
Similar to CoffeeScript, you can define a function using fat arrow syntax.
var square = (n) => n * n;
2. Arrow sco...
victorleungtw.hashnode.dev3 min read