elenat82
12/9/2015 - 5:13 PM

il metodo toUpperCase() in JavaScript.html

<html>
<head>
	<title>il metodo toUpperCase() in JavaScript</title>
	<script type="text/javascript">
	var testo = "Un Testo da Rendere TUTTO in Maiuscolo";
	document.write("<p>Il testo che originariamente appariva così: " + testo + " dopo l'esecuzione del metodo appare così: " + testo.toUpperCase() + "</p>");
	</script>
</head>
<body>

</body>
</html>