Web Designer? Design and market your own professional website with easy-to-use tools.
Compare, review and buy thousands of Laptops , software products at CheckCost.co.uk
Your Text Link Here! and your text description here!
The string object of javascript allows you to manipulate a stored piece of text.
The toLowerCase() method displays a string in lowercase letters.
<script type="text/javascript" language="javascript">
var str="Hello world!";
document.write(str.toLowerCase());
</script>
The javascript code above displays the text below in lowercase letters.