tech/webdev magazine

September 21, 2017

Deploying ES2015+ Code in Production Today — Philip Walton

Thursday, September 21, 2017 Teklinks

Most web developers I talk to these days love writing JavaScript with all the newest language features—async/await, classes, arrow functions, etc. However, despite the fact that all modern browsers can run ES2015+ code and natively support the features I just mentioned, most developers still transpile their code to ES5 and bundle it with polyfills to accommodate the small percentage of users still on older browsers.

Full article