The problem is that Microsoft never gave the needed importance to JScript in the ASP scripting enviroment. due to this Microsoft has almost no documentation in JScript.
So long time ago Microsoft has well documented reference (pre .NET age) for JScript/ASP but has been deleted since then (Warning: this must be now outdated as hell). if you have a Windows Machine and you have Visual Studio (6.0) Discs you can install the MSDN that comes there, and the docmentation exists there but it's hard to find (in the MSDN documentation).
Nowadays Microsoft only use JScript to document API's or functionallity that can be used in Windows Scripting Host that while it's similar, aren't the same thing. my bet is that you can download the documentation for WSH 5.X and learn from there, but you will need to adapt it to ASP.
like @chandu suggested you can download the WSH documentation in CHM format from Microsoft Download site
Examples of documentated API with JScript example code:
NOTE: some of this documentation existed before in MSDN but for some reason that only microsoft knows, decided to separate this documentation to another site. i used to consult this documentation so often when existed in MSDN and was a pain in **s to find it again.
MSXML (API to read/write/parse XML and related technologies)
MSXML API Reference
MSXML API Example Code in Jscript
ADODB Objects (Database, Stream Objects)
ADODB API Reference
ADODB API Examples code in JScript
FileSystem Object (API to Access to the Local folders and files)
FileSystem Object Reference
FileSystemObject Basics (practical cases some of them with Jscript Example code)
Dictionary Object (This is similar to the PHP's Arrays where you can assign a text key and access to the data)
Dictionary Object Reference (this comes with example code in VbScript and JScript as well)
.chmformat? Really? Good lead... but now I need to find where I can get a reader for those in OS X? -- Also, why not answer? :) – gnarf Jul 12 '12 at 22:03