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 toUpperCase() method displays a string in uppercase letters.
<script type="text/javascript" language="javascript">
var str="Hello world!";
document.write(str.toUpperCase());
</script>
The javascript code above displays the text below in uppercase letters.