ringa_lee2017-06-26 10:58:29
f1
是函數物件本身,函數是相當於將函數物件賦值到函數名稱這個變數,所以可以類似存取變數一樣存取函數的. f1()
是呼叫函數.
function test() { console.log('hello'); }
function callfun(f) { f(); } // Pass function `f` and call it in the function.
callfun(test); // Call `test` and print 'hello'