JavaScript Program to String Upper Case toUpperCase() Method
Example:
<script>
var str = "WEBisWorlD";
document.writeln(str.toUpperCase());
</script>
Output:
WEBISWORLD
Share this page on:
Subscribe Email Updates
to get latest update
<script>
var str = "WEBisWorlD";
document.writeln(str.toUpperCase());
</script>
WEBISWORLD
to get latest update