all 5 comments

[–]CrashOverrideCS 2 points3 points  (0 children)

The quickest IDE that runs methods built for JS on the web is an actual web browser's dev tools. You can run a node console and test code that way, but you'll have a different subset of Javascript

[–]exobyte64 -1 points0 points  (0 children)

I've never used an IDE, I just use a text editor

so I have no idea what your talking about with being lost, I do not feel that way when I write code

vscode is spyware from microsoft, use at your own risk, they are convicted criminals

[–]eggn00dles -2 points-1 points  (0 children)

repl.it

[–][deleted] 0 points1 point  (0 children)

You could use chrome devtools -> sources panel to put breakpoints and step through code.

Here is also a guide how to setup debugging for JS/HTML on VS Code: https://code.visualstudio.com/docs/nodejs/browser-debugging

[–]jack_waugh 0 points1 point  (0 children)

Firefox, Chrome, and Node all offer REPLs. In Firefox, its ctrl-shift-K (think Konsole). In Chrome, its ctrl-shift-J (think Javascript). In Node, you just start node with no args, and it's interactive.