例如,
Math.mymfunc = function (x) { return x+1; }
将被视为财产,当我写
for(var p in Math.__proto__) console.log(p)
它会显示出来.但其余的数学函数则不会.如何获取Math对象的所有函数?
@H_403_10@