看看下面JavaScript代码输出什么?

<script>
function test(xxx){
  alert(xxx);
  var xxx = 123;
  function xxx(){ 
  }
  alert(xxx);
}
test(444);
</script>

posted on 2011-03-25 10:26  程序媛蒲苇  阅读(431)  评论(2编辑  收藏  举报

导航