Proof that there are Hitchhiker fans in the JScript UE team...
Here's an example I just found in the MSDN JScript documentation:
The following example illustrates a use of the Error object.
try {
// Throw an error.
throw new Error(42,"No question");
}
catch(e) {
print(e);
// Extract the error code from the error number.
print(e.number & 0xFFFF);
print(e.description);
}
The output of this code is:
Error: No question
42
No question
While it's not uncommon to find geeky references in software documentation, it's the first time I spot something like that in MSDN.