let 语句声明一个块级作用域的本地变量,并且可选的将其初始化为一个值. 描述 let 允许你声明一个作用域或被限制在块级中的变量.语句或者表达式. 与var不同的是,它声明的变量只能是全局或者整个函数块的.换句话,块级 == { } 为什么取‘let’这个名字. Let is a mathematical statement that was adopted by early programming languages like Scheme and Basic. Variables are
js方法调用的四种模式 1.方法调用模式 function Persion() { var name1 = "itcast", age1 = 19, show1 = function() { console.log(this.name); }; return { age : age1, name : name1, show : show1 }; } var p = new Persion(); p.show(); //在show方法中的this指向了p对象. 2. 函数调用模式 fun