I'm having trouble with a Windows Scripting Host script.
Here is an example of problem input code:
WScript.Echo(typeof(parseInt('woot')))
WScript.Echo(parseInt('woot'))
The output is:
number
1.#QNAN
Shouldn't 'woot' be evaluating as a string? How can I get around this limitation?