Posts tagged with "ES6"

ECMAScript (or ES) is a trademarked scripting-language specification standardized by Ecma International in ECMA-262 and ISO/IEC 16262. Well-known implementations of the language, such as JavaScript, JScript and ActionScript have come into wide use for client-side scripting on the Web.

Quick and dirty look at ECMAScript 6

March 17, 2016 by Christoff Truter

In this post I am going to give you a quick overview of the JavaScript implementation of the 6th major release of the ECMAScript specification (just enough information to get you fired).

JavaScript   ES6  

JavaScript Promises

March 9, 2016 by Christoff Truter

A Promise acts like a placeholder for an asynchronous operation that hasn't completed yet, its aim is to give us back the things we "lost" (or never had for that matter) when writing asynchronous code opposed to synchronous code.

JavaScript   ES6