js的变量的有效域
2017-08-16 08:53 很大很老实 阅读(291) 评论(0) 编辑 收藏 举报
function test(o) { var i=0; if(typeof o=="object") { var j=1; for(var k=0;k<10;k++) { console.log('loop in:'+k) } console.log('loop out:'+k) } console.log(j) } test([1,2,3,4]) test('wcfwcfwcf')