var f = new Foo(7); //预测输出结果: f.bar(); // result: TypeError, f.bar is not a function. f.baz(); // result: 7 f.biz(); // result: ReferenceError, a is not defined
2、
// 函数声明语句
{ let a = 'secret'; function f() { return a; } }
// 函数表达式
{ let a = 'secret'; let f = function () { return a; }; }