Till startsidan för Jonas Webresurs JavaScript-skolan: Operatorer
Facit 5
Facit till övning 5

<script language="JavaScript">
<!--
var a = "3", b = 4, c = "fem", d = a;
alert(typeof(a));
alert(typeof(b));
alert(typeof(c));
alert(typeof(d));
-->
</script>