Factsheet
Videos
Is PlayCode's JavaScript compiler free?
What is a JavaScript compiler?
Does the JavaScript compiler work offline?
Following is a free list of tools you can use to check, test and verify your JS code:
- Google Code Playground
- JavaScript Sandbox
- jsbin
- jsfiddle
- pastebin
- jsdo.it
- firebug
- html5snippet.net
Hope this helps.
If you want to edit some complex javascript I suggest you use JsFiddle. Alternatively, for smaller pieces of javascript you can just run it through your browser URL bar, here's an example:
javascript:alert("hello world");
And, as it was already suggested both Firebug and Chrome developer tools have Javascript console, in which you can type in your javascript to execute. So do Internet Explorer 8+, Opera, Safari and potentially other modern browsers.
Sorry for asking this I suposse this gets asked a lot here but I could not find any info on the matter.
I am learning js for web developing but I already know python. I have been learning for 2 days and today I started js codewars.
Everytime I want to set up an exercise I have to create an html file, link the file to the html, launch the html in the browser, write the code in the js file, open the console on firefox and check if my function has the correct output (I use console.log to check)
It gets old real quick when you have to do that 10 times a day. In python I would just click "run" and that's it.
Is there anyway to check the output on vs code without having to set up the whole thing?