Javascript lcase and ucase function
The javascript equivalent to vbscript’s lcase() function is .toLowerCase(). Here’s an example:
var a;
a = ‘HELLO’;
a = a.toLowerCase();
alert(a);
The output is, “hello�.
The equivalent to vbscript’s ucase() function is .toUpperCase().
