Re: [问题] javascript 函数的提升

楼主: kisha024 (4545454554)   2016-05-12 17:00:55
※ 引述《mrbigmouth (大嘴先生)》之铭言:
: ※ 引述《kisha024 (4545454554)》之铭言:
: : 各位好
: : 我是参考这里的资料
: : http://fireqqtw.logdown.com/posts/258823-javascript-function-notes
: : function one() {
: : console.log('global one');
: : }
: : function two() {
: : console.log('global two');
: : }
: : function hoistFun() {
: : console.log(typeof one);
: : console.log(typeof two);
: : one();
: : two();
: : function one() {
: : console.log('local one');
: : }
: : var two = function() {
: : console.log('local two');
: : }
: : }
: :
作者: mygirl30229 (Cian)   2016-05-12 19:27:00
你列出的第二种方式并不正确
作者: xxxx9659 (嘎嘎嘎嘎嘎)   2016-05-23 02:17:00
'尽可能给function一个名称是比较好的设计方式'我猜是下面这种var two = function two() { ... }

Links booklink

Contact Us: admin [ a t ] ucptt.com