看看下面JavaScript代码输出什么?
<script>
function test(xxx){
alert(xxx);
var xxx = 123;
function xxx(){
}
alert(xxx);
}
test(444);
</script>
<script>
function test(xxx){
alert(xxx);
var xxx = 123;
function xxx(){
}
alert(xxx);
}
test(444);
</script>