es6console icon indicating copy to clipboard operation
es6console copied to clipboard

🔮 Play with ECMAScript compilers

Results 13 es6console issues
Sort by recently updated
recently updated
newest added

Not sure if this is an appropriate place to raise issues regarding https://es6console.com/ but I'm wondering if there is a way to turn off auto-running code as I type? The...

Hi, Everything is in title, it's a feature request to make a better user experience on mobile where short key can not be done to clear console.

Only in Typescript compiler: `[...parentNode.children]` transpiles to `parentNode.children.slice()` ...maybe `Array.from(parentNode.children).slice()` or `[].slice.call(parentNode.children)` instead?

Hi. The tool is perfect for code execution. I was thinking if you can add dragging enlarge feature, Thanks

Tried running the following - ``` console.log("1"); setTimeout(function () { console.log("2"); }, 0); console.log("3"); ``` Expected output - ``` 1 3 2 ``` Actual output - ``` 2 1 3...

The current option of `COMPILER` are: - babel (6) - babel (5) - traceur - typescript - regenerator - prepack Please provide an option of `no transpile` (or `JavaScript`) so...

Currently, the console outputs empty curly brackets {} when creating a WeakSet:

Hi, Everything is in title, it's a feature request to make a better output console.

The console is awesome! Would it be possible to add support for ES6 modules and imports?

enhancement

``` function traditionalFn(){ console.log(this) } traditionalFn(); ``` or ``` var aFunction=()=> console.log(this) aFunction(); ``` does not print window in the console.

bug