Neil Fraser

Results 7 issues of 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: ![Screen Shot 2019-10-13 at 12 21 03](https://user-images.githubusercontent.com/250480/66720939-e991fb80-edb6-11e9-974e-b322ec3f89c1.png) Ideally the block could be dragged...

type: feature request
help wanted
category: plugin
status: implementation

### 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...

type: feature request
help wanted
category: plugin

### 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...

category: codelab

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: >...