我試圖將功能添加到format function但有什麼毛病我的代碼:添加功能Intl.NumberFormat
Object.defineProperty(Intl.NumberFormat.prototype, "format", { value: function(){
//your logic here
let orig = Intl.NumberFormat.prototype
console.log(orig);// does not remember the original proto
}, configurable: true });
我缺少什麼?
你是什麼意思「原原」?你在期待什麼? –