ES6 Write code. Don't fight your linter. Stop wasting time formatting javascript! Discussions About Building and Enforcing a JavaScript Style Guide By far the biggest reason for adopting prettier is to stop all the ongoing debates over styles. It is
ES6 ES6 for Humans Table of Contents: - let, const and block scoping - Arrow Functions - Default Function Parameters - Spread/Rest Operator - Object Literal Extensions - Octal and Binary Literals - Array and Object Destructuring - super in Objects - Template Literal and Delimiters...
ES6 Level Up Using Async / Await with the MEAN Stack This post details a new feature in Node.js that make callbacks and promise libraries like Bluebird and co a thing of the past. All of the modern browsers support the new version
ES6 ES6 Learning Notes - Asynchronous Development Callbacks The most basic form of async programming in JS is the callback. The caller spawns an asynchronous operation. When the caller initiates this process, it passes the process to a callback, trusting
ES6 ES6 Learning Notes - Built In Objects New Array Changes ES6 has added several new functions to Array instances. find Find the first member whose value is greater than 8: var ary = [1, 5, 10]; var match = ary.find(item
ES6 ES6 Learning Notes - Functional JavaScript Arrow functions introduce a concise syntax for defining a function. On the left hand side of the arrow are the parameters, and on the right is the function body. There is no need for braces or a return statement.
ES6 ES6 Learning Notes - Classes Classes In the old way of writing classes, a constructor function and a prototype object that all instances would inherit from had to be created. This looked something like this: var Employee = function(
ES6 ES6 Learning Notes - Variables and Parameters The let Keyword let allows us to define variables in a different way than var. With var there are two types of scope: global when the variable is defined outside of the function,