addyosmani/es6-equivalents-in-es5
As an open-source project, addyosmani/es6-equivalents-in-es5 has picked up 2.5k stars on GitHub. WIP - ES6 Equivalents In ES5
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
Snapshot
Top contributors
Show top contributors
ECMAScript 6 equivalents in ES5
Please note this document is very much a work in progress. Contributions are welcome.
Table of contents:
- Arrow Functions
- Block Scoping Functions
- Template Literals
- Computed Property Names
- Destructuring Assignment
- Default Parameters
- Iterators and For-Of
- Classes
- Modules
- Numeric Literals
- Property Method Assignment
- Object Initializer Shorthand
- Rest Parameters
- Spread Operator
- Proxying a function object
- Array-like object to array
- About
- License
Arrow Functions
An arrow function expression (also known as fat arrow function) has a shorter syntax compared to function expressions and lexically binds the this value. Arrow functions are always anonymous.
ES6:
[1, 2, 3].map(n => n * 2);
// -> [ 2, 4, 6 ]
ES5 equivalent:
[1, 2, 3].map(function(n) { return n * 2; }, this);
// -> [ 2, 4, 6 ]
ES6:
var evens = [2, 4, 6, 8, 10];
// Expression bodies
var odds = evens.map(v => v + 1);
var nums = evens.map((v, i) => v + i);
console.log(odds);
// -> [3, 5, 7, 9, 11]
console.log(nums);
// -> [2, 5, 8, 11, 14]
// Statement bodies
var fives = [];
nums = [1, 2, 5, 15, 25, 32];
nums.forEach(v => {
if (v % 5 === 0)
fives.push(v);
});
console.log(fives);
// -> [5, 15, 25]
// Lexical this
var bob = {
_name: 'Bob',
_friends: [],
printFriends() {
this._friends.forEach(f =>
console.log(this._name + ' knows ' + f));
}
}
ES5:
'use strict';
var evens = [2, 4, 6, 8, 10];
// Expression bodies
var odds = evens.map(function (v) {
return v + 1;
}, this);
var nums = evens.map(function (v, i) {
return v + i;
}, this);
console.log(odds);
// -> [3, 5, 7, 9, 11]
console.log(nums);
// -> [2, 5, 8, 11, 14]
var fives = [];
nums = [1, 2, 5, 15, 25, 32];
// Statement bodies
nums.forEach(function (v) {
if (v % 5 === 0) {
fives.push(v);
}
}, this);
console.log(fives);
// -> [5, 15, 25]
// Lexical this
var bob = {
_name: 'Bob',
_friends: [],
printFriends: function printFriends() {
this._friends.forEach(function (f) {
return console.log(this._name + ' knows ' + f);
}, this);
}
};
Block Scoping Functions
Block scoped bindings provide scopes other than the function and top level scope. This ensures your variables don't leak out of the scope they're defined:
ES6:
// let declares a block scope local variable,
// optionally initializing it to a value in ES6
'use strict';
var a = 5;
var b = 10;
if (a === 5) {
let a = 4; // The scope is inside the if-block
var b = 1; // The scope is inside the function
console.log(a); // 4
console.log(b); // 1
}
console.log(a); // 5
console.log(b); // 1
ES5:
'use strict';
var a = 5;
var b = 10;
if (a === 5) {
// technically is more like the following
(function () {
var a = 4;
b = 1;
console.log(a); // 4
console.log(b); // 1
})();
}
console.log(a); // 5
console.log(b); // 1
ES6:
// const creates a read-only named constant in ES6.
'use strict';
// define favorite as a constant and give it the value 7
const favorite = 7;
// Attempt to overwrite the constant
try {
favorite = 15;
} catch (err) {
console.log('my favorite number is still: ' + favorite);
// will still print 7
}
ES5:
'use strict';
// define favorite as a non-writable `constant` and give it the value 7
Object.defineProperties(window, {
favorite: {
value: 7,
enumerable: true
}
});
// ^ descriptors are by default false and const are enumerable
var favorite = 7;
// Attempt to overwrite the constant
favorite = 15;
// will still print 7
console.log('my favorite number is still: ' + favorite);
Template Literals
ES6 Template Literals are strings that can include embedded expressions. This is sometimes referred to as string interpolation.
ES6:
// Basic usage with an expression placeholder
var person = 'Addy Osmani';
console.log(`Yo! My name is ${person}!`);
// Expressions work just as well with object literals
var user = {name: 'Caitlin Potter'};
console.log(`Thanks for getting this into V8, ${user.name}.`);
// Expression interpolation. One use is readable inline math.
var a = 50;
var b = 100;
console.log(`The number of JS frameworks is ${a + b} and not ${2 * a + b}.`);
// Multi-line strings without needing \n\
console.log(`string text line 1
string text line 2`);
// Functions inside expressions
function fn() { return 'result'; }
console.log(`foo ${fn()} bar`);
ES5:
'use strict';
// Basic usage with an expression placeholder
var person = 'Addy Osmani';
console.log('Yo! My name is ' + person + '!');
// Expressions work just as well with object literals
var user = { name: 'Caitlin Potter' };
console.log('Thanks for getting this into V8, ' + user.name + '.');
// Expression interpolation. One use is readable inline math.
var a = 50;
var b = 100;
console.log('The number of JS frameworks is ' + (a + b) + ' and not ' + (2 * a + b) + '.');
// Multi-line strings:
console.log('string text line 1\nstring text line 2');
// Or, alternatively:
console.log('string text line 1\n\
string text line 2');
// Functions inside expressions
function fn() {
return 'result';
}
console.log('foo ' + fn() + ' bar');
Computed Property Names
Computed property names allow you to specify properties in object literals based on expressions:
ES6:
var prefix = 'foo';
var myObject = {
[prefix + 'bar']: 'hello',
[prefix + 'baz']: 'world'
};
console.log(myObject['foobar']);
// -> hello
console.log(myObject['foobaz']);
// -> world
ES5:
'use strict';
var prefix = 'foo';
var myObject = {};
myObject[prefix + 'bar'] = 'hello';
myObject[prefix + 'baz'] = 'world';
console.log(myObject['foobar']);
// -> hello
console.log(myObject['foobaz']);
// -> world
Destructuring Assignment
The destructuring assignment syntax is a JavaScript expression that makes it possible to extract data from arrays or objects using a syntax that mirrors the construction of array and object literals.
ES6:
var {foo, bar} = {foo: 'lorem', bar: 'ipsum'};
// foo => lorem and bar => ipsum
ES5:
'use strict';
var _ref = { foo: 'lorem', bar: 'ipsum' };
// foo => lorem and bar => ipsum
var foo = _ref.foo;
var bar = _ref.bar;
ES3:
with({foo: 'lorem', bar: 'ipsum'}) {
// foo => lorem and bar => ipsum
}
ES6:
var [a, , b] = [1,2,3];
ES6 (shimming using Symbol.iterator):
'use strict';
var _slicedToArray = function (arr, i) {
if (Array.isArray(arr)) {
return arr;
} else {
var _arr = [];
for (var _iterator = arr[Symbol.iterator](), _step; !(_step = _iterator.next()).done;) {
_arr.push(_step.value);
if (i && _arr.length === i) {
break;
}
}
return _arr;
}
};
var _ref = [1, 2, 3];
var _ref2 = _slicedToArray(_ref, 3);
var a = _ref2[0];
var b = _ref2[2];
ES5:
String.prototype.asNamedList = function () {
return this.split(/\s*,\s*/).map(function (name, i) {
return name ? ('var ' + name + '=slice(' + i + ', ' + (i + 1) + ')[0]') : '';
}).join(';');
};
with([1,2,3]) {
eval('a, , b'.asNamedList());
}
Default Parameters
Default parameters allow your functions to have optional arguments without needing to check arguments.length or check for undefined.
ES6:
function greet(msg='hello', name='world') {
console.log(msg,name);
}
greet();
// -> hello world
greet('hey');
// -> hey world
ES5:
'use strict';
function greet() {
// unfair ... if you access arguments[0] like this you can simply
// access the msg variable name instead
var msg = arguments[0] === undefined ? 'hello' : arguments[0];
var name = arguments[1] === undefined ? 'world' : arguments[1];
console.log(msg, name);
}
function greet(msg, name) {
(msg === undefined) && (msg = 'hello');
(name === undefined) && (name = 'world');
console.log(msg,name);
}
// using basic utility that check against undefined
function greet(msg, name) {
console.log(
defaults(msg, 'hello'),
defaults(name, 'world')
);
}
greet();
// -> hello world
greet('hey');
// -> hey world
ES6:
function f(x, y=12) {
// y is 12 if not passed (or passed as undefined)
return x + y;
}
f(3) === 15;
ES5:
'use strict';
function f(x, y) {
if (y === undefined) {
y = 12;
}
return x + y;
}
f(3) === 15;
Iterators And For-Of
Iterators are objects that can traverse a container. It's a useful way to make a class work inside a for of loop.
The interface is similar to the iterators-interface. Iterating with a for..of loop looks like:
ES6:
// Behind the scenes, this will get an iterator from the array and loop through it, getting values from it.
for (let element of [1, 2, 3]) {
console.log(element);
}
// => 1 2 3
ES6 (without using for-of, if Symbol is supported):
'use strict';
for (var _iterator = [1, 2, 3][Symbol.iterator](), _step; !(_step = _iterator.next()).done;) {
var element = _step.value;
console.log(element);
}
// => 1 2 3
ES5 (approximates):
// Using forEach()
// Doesn't require declaring indexing and element variables in your containing
// scope. They get supplied as arguments to the iterator and are scoped to just
// that iteration.
var a = [1,2,3];
a.forEach(function (element) {
console.log(element);
});
// => 1 2 3
// Using a for loop
var a = [1,2,3];
for (var i = 0; i < a.length; ++i) {
console.log(a[i]);
}
// => 1 2 3
Note the use of Symbol. The ES5 equivalent would require a Symbol polyfill in order to correctly function.
Classes
This implements class syntax and semantics as described in the ES6 draft spec. Classes are a great way to reuse code. Several JS libraries provide classes and inheritance, but they aren't mutually compatible.
ES6:
class Hello {
constructor(name) {
this.name = name;
}
hello() {
return 'Hello ' + this.name + '!';
}
static sayHelloAll() {
return 'Hello everyone!';
}
}
class HelloWorld extends Hello {
constructor() {
super('World');
}
echo() {
alert(super.hello());
}
}
var hw = new HelloWorld();
hw.echo();
alert(Hello.sayHelloAll());
ES5 (approximate):
function Hello(name) {
this.name = name;
}
Hello.prototype.hello = function hello() {
return 'Hello ' + this.name + '!';
};
Hello.sayHelloAll = function () {
return 'Hello everyone!';
};
function HelloWorld() {
Hello.call(this, 'World');
}
HelloWorld.prototype = Object.create(Hello.prototype);
HelloWorld.prototype.constructor = HelloWorld;
HelloWorld.sayHelloAll = Hello.sayHelloAll;
HelloWorld.prototype.echo = function echo() {
alert(Hello.prototype.hello.call(this));
};
var hw = new HelloWorld();
hw.echo();
alert(Hello.sayHelloAll());
A more faithful (albeit, slightly verbose) interpretation can be found in this Babel output.
Modules
Modules are mostly implemented, with some parts of the Loader API still to be corrected. Modules try to solve many issues in dependencies and deployment, allowing users to create modules with explicit exports, import specific exported names from those modules, and keep these names separate.
Assumes an environment using CommonJS
app.js - ES6
import math from 'lib/math';
console.log('2π = ' + math.sum(math.pi, math.pi));
app.js - ES5
var math = require('lib/math');
console.log('2π = ' + math.sum(math.pi, math.pi));
lib/math.js - ES6
export function sum(x, y) {
return x + y;
}
export var pi = 3.141593;
lib/math.js - ES5
exports.sum = sum;
function sum(x, y) {
return x + y;
}
var pi = exports.pi = 3.141593;
lib/mathplusplus.js - ES6
export * from 'lib/math';
export var e = 2.71828182846;
export default function(x) {
return Math.exp(x);
}
lib/mathplusplus.js - ES5
var Math = require('lib/math');
var _extends = function (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
target[key] = source[key];
}
}
return target;
};
var e = exports.e = 2.71828182846;
exports['default'] = function (x) {
return Math.exp(x);
};
module.exports = _extends(exports['default'], exports);
Numeric Literals
ES6:
var binary = [
0b0,
0b1,
0b11
];
console.assert(binary === [0, 1, 3]);
var octal = [
0o0,
0o1,
0o10,
0o77
];
console.assert(octal === [0, 1, 8, 63]);
ES5:
'use strict';
var binary = [0, 1, 3];
console.assert(binary === [0, 1, 3]);
var octal = [0, 1, 8, 63];
console.assert(octal === [0, 1, 8, 63]);
Property Method Assignment
Method syntax is supported in object initializers, for example see toString():
ES6:
var object = {
value: 42,
toString() {
return this.value;
}
};
console.log(object.toString() === 42);
// -> true
ES5:
'use strict';
var object = {
value: 42,
toString: function toString() {
return this.value;
}
};
console.log(object.toString() === 42);
// -> true
Object Initializer Shorthand
This allows you to skip repeating yourself when the property name and property value are the same in an object literal.
ES6:
function getPoint() {
var x = 1;
var y = 10;
return {x, y};
}
console.log(getPoint() === {
x: 1,
y: 10
});
ES5:
'use strict';
function getPoint() {
var x = 1;
var y = 10;
return { x: x, y: y };
}
console.log(getPoint() === {
x: 1,
y: 10
});
Rest Parameters
Rest parameters allows your functions to have variable number of arguments without using the arguments object. The rest parameter is an instance of Array so all the array methods just work.
ES6:
function f(x, ...y) {
// y is an Array
return x * y.length;
}
console.log(f(3, 'hello', true) === 6);
// -> true
ES5:
'use strict';
function f(x) {
var y = [];
y.push.apply(y, arguments) && y.shift();
// y is an Array
return x * y.length;
}
console.log(f(3, 'hello', true) === 6);
// -> true
Spread Operator
The spread operator is like the reverse of rest parameters. It allows you to expand an array into multiple formal parameters.
ES6:
function add(a, b) {
return a + b;
}
let nums = [5, 4];
console.log(add(...nums));
ES5:
'use strict';
var _toArray = function (arr) {
return Array.isArray(arr) ? arr : [].slice.call(arr);
};
function add(a, b) {
return a + b;
}
var nums = [5, 4];
console.log(add.apply(null, _toArray(nums)));
ES6:
function f(x, y, z) {
return x + y + z;
}
// Pass each elem of array as argument
f(...[1,2,3]) === 6;
ES5:
'use strict';
function f(x, y, z) {
return x + y + z;
}
// Pass each elem of array as argument
f.apply(null, [1, 2, 3]) === 6;
Proxying a function object
ES6:
var target = function () {
return 'I am the target';
};
var handler = {
apply: function (receiver, ...args) {
return 'I am the proxy';
}
};
var p = new Proxy(target, handler);
console.log(p() === 'I am the proxy');
// -> true
ES5:
No proxy in ES5, hard to intercept noSuchMethod and others.
Array-like object to array
Array.from converts a single argument that is an array-like object or list (eg. arguments, NodeList, DOMTokenList (used by classList), NamedNodeMap (used by attributes property) into a new Array() and returns it.
ES6:
var listFriends = function() {
var friends = Array.from(arguments);
friends.forEach(friend => {
console.log(friend);
});
};
listFriends('ann', 'bob');
// -> 'ann'
// -> 'bob'
var divs = document.querySelectorAll('div');
Array.from(divs).forEach(node => {
console.log(node);
});
// -> <div>...</div>
// -> <div>...</div>
ES5:
var listFriends = function() {
var friends = [].slice.call(arguments)
friends.forEach(function(friend) {
console.log(friend);
});
};
listFriends('ann', 'bob');
// -> 'ann'
// -> 'bob'
var divsArray = [].slice.call(document.querySelectorAll('div'));
divsArray.forEach(function(node) {
console.log(node);
});
// -> <div>...</div>
// -> <div>...</div>
About
Inspired by:
- ES6 Feature Proposals
- ES6 Features
- ECMAScript 6 support in Mozilla
- Babel
- JS Rocks
License
This work is licensed under a Creative Commons Attribution 4.0 International License.
Related repositories
Master programming by recreating your favorite technologies from scratch.
😎 Awesome lists about all kinds of interesting topics
Public APIs is a community-curated GitHub repository listing free, publicly accessible APIs across a wide range of categories, with auth type, HTTPS, and CORS noted for each entry. It's a browsable reference, not a library to install.
freeCodeCamp.org's open-source codebase and curriculum. Learn math, programming, and computer science for free.
Quick answers
How active is development on addyosmani/es6-equivalents-in-es5?
The most recent commit recorded on addyosmani/es6-equivalents-in-es5 was 9.3 years ago, based on the GitHub push timestamp. The repository has 165 forks — one of the better signals of community interest.
How many stars does addyosmani/es6-equivalents-in-es5 have?
addyosmani/es6-equivalents-in-es5 has 2.5k GitHub stars — refresh the page for the live number, or check github.com/addyosmani/es6-equivalents-in-es5. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
Is addyosmani/es6-equivalents-in-es5 open source?
TopGit's metadata for addyosmani/es6-equivalents-in-es5 does not record a license. Most public repositories on GitHub ARE open source, but the exact terms vary — verify by opening the LICENSE file directly.
What is addyosmani/es6-equivalents-in-es5?
addyosmani/es6-equivalents-in-es5 (addyosmani/es6-equivalents-in-es5) is a multi-language project on GitHub. From the project's own README: WIP - ES6 Equivalents In ES5
Where do I read more about addyosmani/es6-equivalents-in-es5?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/addyosmani/es6-equivalents-in-es5 is the definitive source.
Read full README in the tab above.