function a() {
console.log('this is a function');
}
function b() {
console.log('this is b function');
//变量
var fun;
fun = 'a';
fun(); //如何可以让变量返回的字符串当成一个函数?
相关分类