elenat82
12/9/2015 - 3:57 PM

il metodo fromCharCode() in JavaScript.html

<html>
<head>
	<title>il metodo fromCharCode() in JavaScript</title>
	<script type="text/javascript">
	document.write("<p>Le lettere corrispondenti ai caratteri Unicode 73, 44, 122, 91 sono " + String.fromCharCode(73, 44, 122, 91) + "</p>");
	</script>
</head>
<body>

</body>
</html>