0
我想寫一個將另一個函數作爲參數的函數(我們可以假設其他函數的toString方法總是被覆蓋並返回一個自定義值),並返回函數的原始代碼toString值。JavaScript .toString()默認值
function foo() {}
foo.toString = function() {
return 'abc'; }
如何恢復函數的toString方法,以便它會再次返回「function foo(){}」?