标签:js
1. js没有块级作用域
if(true){ var color ="blue"; } alert(color); //"blue" for (var i=0; i<10 i++){ doSomething(i); } alert(i); // "10"
《javascript高级程序设计》读书笔记,布布扣,bubuko.com
《javascript高级程序设计》读书笔记
原文地址:http://blog.csdn.net/helpzp2008/article/details/38658025