I'm reading books on JavaScript programming, and I need an environment like Python's IDLE to type JavaScript commands into and then see the results like you would in IDLE.
Is there an environment where you can do such a thing?
I'm reading books on JavaScript programming, and I need an environment like Python's IDLE to type JavaScript commands into and then see the results like you would in IDLE. Is there an environment where you can do such a thing? |
||||
put on hold as off-topic by Thomas Owens♦ yesterdayThis question appears to be off-topic. The users who voted to close gave this specific reason:
|
||||
|
Any of the major browsers (IE, FireFox, Chrome, Safari, etc..) will execute and display the results of JavaScript code that you put into it. You can open the developer console in Chrome and in IE using F12 and in Firefox using Ctrl+Shift+K. Alternatively you can simply put it into a |
|||||
|
I find http://jsfiddle.net/ to be a good test environment for trying things out (in JavaScript, HTML and CSS), if you just want to try something easily and now using your browser. |
|||||
|
Mainstream browsers' dev tools have a console for executing expressions: https://developer.chrome.com/devtools/docs/console#evaluating-expressions http://msdn.microsoft.com/en-us/library/ie/gg589530(v=vs.85).aspx There is also Plunker. It is similar to jsFiddle that was already mentioned. |
|||||||||
|
Most of the answers centre on Javascript in the web browser. If you're interested in server-side Javascript (or more generally, Javascript in non-browser environments), then you've got a couple of other options:
|
|||
|
As for actual IDE's, you could use Visual Studio (express version is free). They've added better JS intellisense support in the past few releases. |
|||
|
Jetbrains Webstorm is an IDE you can use as well, if that's the sort of thing you're looking into. Otherwise, there's probably an eclipse plugin. There's also Sublime Text and Atom, that, with a few plugins, can do it very well. |
|||
|
Thank you for your interest in this question.
Because it has attracted low-quality answers, posting an answer now requires 10 reputation on this site.
Would you like to answer one of these unanswered questions instead?