JSFiddle - React, Tailwind, and code Playground
by Mahesha999
JavaScript
var obj = {
name: "obj",
f: function () {
return this + ":" + this.name;
}
};
document.write(obj.f());
by Mahesha999
var obj = {
name: "obj",
f: function () {
return this + ":" + this.name;
}
};
document.write(obj.f());