hmm... it says the article got 2 comments, but I can't see any.
Anyways,...
I'm not sure, but might it be because VB you can put several options separated by a comma,
Case 1, 2, 3:
//Do something
Case 4
however in JScript (haven't tried C or Java) you have to do something like
Case 1
Case 2
Case 3
//Do something
break;
Case 4
but that doesn't explain why JScript don't have comma separated switch list.