// 函数声明语句{ let a = 'secret'; function f() { return a; } }// 函数表达式{ let a = 'secret'; let f = function () { return a; }; }
尚方宝剑之说
相关分类