JSFiddle - React, Tailwind, and code Playground
by shrpne
JavaScript
function Asd() {
this.data = '123'
}
Asd.prototype.b = function() {
console.log(this.data, 'bdc')
}
asd = new Asd()
origB = asd.b.bind(asd);
asd.b = function() {
console.log('333')
origB()
}
asd.b()