Understanding The Babel 6 JavaScript Transpiler Tutorial
Babel is a JavaScript transpiler. It can take ES2015, or now ES2016 code and make it work on your web browser by transpiling it to ES5. This is important because not all web browsers support the new ECMA standards as of this writing. I wrote about Babel last year and…