灭绝师太2018-04-20 13:05:34
影片中:var a=function (x){return x*x;}//將函數當作值賦值給變數a
呼叫方法如:
var pf=function ( x){return x*x;}//求平方
var lf=function(x){return x*x*x;}//求立方
//呼叫函數得到對應結果
function doFunc(func,value){
# return func(value);
}
console.log(doFunc( pf,10));
console.log(doFunc(lf,10));
##