Neil Fraser
Neil Fraser
Potential performance boost: https://github.com/NeilFraser/CodeCity/pull/127
Currently context menus for variables look like this: It would be better if they looked like this:  Ideally the block could be dragged...
### Check for duplicates - [X] I have searched for similar issues before opening a new one. ### Component _No response_ ### Description For all plugins, the demo page has...
### Check for duplicates - [x] I have searched for similar issues before opening a new one. ### Component Codelabs ### Problem The codelabs have a lot of moving parts...
No functional changes.
var x = 0; do { x++; console.log(x); } while(x < 10); Actual Result: Error: Unexpected token: keyword (while) (line: 4, col: 3, pos: 66) Expected result: Same output code...
JavaScript coerces a Date to a string: > (new Date()) + 60000 "Wed Dec 18 2024 00:19:11 GMT+0100 (Central European Standard Time)60000" JS-Interpreter coerces a Date to a number: >...