I am looking for a way to test my JavaScript without using html.
Similar to JS Fiddle or JS Bin, But I want to be able to execute the JavaScript in the output window without having to place it inside HTML
eg
function out()
{
var x = 5;
var y = 10;
z = x * y;
return z;
}
alert(out());
and have the output window print 50
Thanks for the help
Atraù
F12(most browsers) orCtrl+Shift+K(FireFox/Mozilla) and type into the Console?:w !node. It's great for quick testing.