I thought for some simple tests that just run a few commands i would try using some JavaScript and run it from the command line in Windows XP.
So for a quick test I crea
You are calling a function called alert, but this is not part of JavaScript (it is part of DOM 0 and is provided by browsers)
Since you haven't defined it, you are trying to treat undefined as a function, which it isn't.
undefined
Qnan suggests using the Echo method instead.