<!DOCTYPE html>
<html>
<head>
<title>L'operatore typeof in JavaScript</title>
<script type="text/javascript">
var a = 1;
document.write("<p>La variabile a è di tipo " + typeof a + "</p>");
var b = "gatto";
document.write("<p>La variabile b è di tipo " + typeof b + "</p>");
var c = "";
document.write("<p>La variabile c è di tipo " + typeof c + "</p>");
var d = false;
document.write("<p>La variabile d è di tipo " + typeof d + "</p>");
var e;
document.write("<p>La variabile e è di tipo " + typeof e + "</p>");
var f = ["rosso", "verde", "blu"];
document.write("<p>La variabile f è di tipo " + typeof f + "</p>");
var g = new Date();
document.write("<p>La variabile g è di tipo " + typeof g + "</p>");
</script>
</head>
<body>
</body>
</html>