JSFiddle - React, Tailwind, and code Playground

by Pranab Dey

JavaScript

var obj = {
  nae: "Pranab",
  g: function() {
    return this.nae;
  }
}

var nae = "boom";

var f = obj.g;
console.log(f());