CoffeeScript to ES6 cheatsheet
References:
Iteration
On object properties:
On collection (array):
Misc
Replace
==
/!=
with===
/!==
There is no concept of class variable in ES6, you might want to just turn that to a static method:
Last updated