+ 4
babel
whats th need of babel in es6
3 Respostas
+ 6
Babel is a JavaScript compiler. It is stated clearly in their website. It compiles ES6+ code to ES5
https://babeljs.io/
+ 7
LOL... It's sort of like a decompiler.
🤣😂
It's used to convert newer language features of Javascript that might not yet be supported across all browsers into the older ES5 version.
+ 1
Ore thanks