JSFiddle - React, Tailwind, and code Playground
JavaScript
function Foo() {
}
Object.defineProperties(Foo.prototype, {
foo: {
value: function () {
console.log("bar");
}
}
});
var foo = new Foo();
foo.foo()
function Foo() {
}
Object.defineProperties(Foo.prototype, {
foo: {
value: function () {
console.log("bar");
}
}
});
var foo = new Foo();
foo.foo()