Home page
ES6 transpilation ES5(Babel.js)
Features:
ES6 converts ES5, also supports ES7/ES8/ES9, etc.
Transformation based on Babel.js
Online use, simple and lightweight, no need to install Node.js, configure a complex development environment
After the new JS syntax is converted, it can solve the syntax error problem of old browsers
JS code syntax highlighting
ES6 code
let getArray = () => [];
convert>
ES5 code
"use strict"; var getArray = function getArray() { return []; };
Related features
ES5 converter, convert all js new syntax to ES5
ES6 compiler online
Babel repl online test
Babel playground online runtime environment
js next-generation new syntax converter compiler
ES6/7/8/9 online conversion ES5, compatible with old browsers
What should I do if ES6/7/8/9 reports an error in the browser, just use Babel to convert it to ES5
Babel.js browser-side demo
How to use Babel.js in the browser environment
@babel/standalone live example
Babel.transform online demo
English
|
中文版
|
Español
|
Português(PT)
|
ру́сский язы́к(RU)
Home page