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