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