Simple JavaScript IDE

ide, javascript

Solution

Ended up using this IDE as I could run it on a low powered Laptop. Free Version

http://brackets.io/

There is also a free offering from Microsoft with Visual Studio 2015 called "Visual Studio Code" runs on Macs and linux too. Only used it for a day but it work great on my low powered tablet.

https://code.visualstudio.com/

Problem

I am brand new to JavaScript and I would like practice my skills using a simple windows based IDE. While learning I do not want to use any CSS or HTML. I would like if possible to have colour single stepping, highlighting and syntax checking. So for example you could type in your function(s), call it and receive the result ``` function squareNumber(x) { return x*x; } squareNumber(5) 25 ``` I would like something better than the Internet Explorer console.

Original source

Related problems