var func = function() {
alert (func === arguments.callee);
};
func(); //true
為什么可以不用alert也可以輸出呢?
Helenr
2018-10-24 10:21:42