function a(){}
function b(){}
function c(){}function demo(参数){
 //有时用a(),有时用b(),有时用c()
}demo(参数);
我的疑问是,可以把函数作为参数传递么?
可以的话,写法是怎样的?
求指点