JSFiddle - React, Tailwind, and code Playground

by Mahesha999

JavaScript

var obj = {
            name: "obj",
            f: function () {
                return this + ":" + this.name;
            }
        };
document.write(obj.f());