|
| JAVASCRIPT toUpperCase() METHOD
In javascript, the toUpperCase() method displays all the characters in the specified text/string in upper case.
The general format is:
string.toUpperCase();
Example:
<script type="text/javascript">
var string="bugs bunny here";
document.write(string.toUpperCase());
</script>
The above will output:
See Also:
|
|