<html>
<head>
<script type="text/javascript">
function test(){
return alert('test');
}
function test2(){
return test();
}
function test3(){
var x = new Array(1,2,3,4);
return x;
}
function test4(){
var y = test3()
alert(typeof y);
alert(y.length);
}
</script>
</head>
<body onload="test2(); test4();">
</body>
</html>