JSFiddle - React, Tailwind, and code Playground

by Wentz Wu

JavaScript

var msg = "hello1";
var obj = {
  msg: "hello2",
  sayHello: function() {
    var msg = "hello3";
    alert(this.msg);
    alert((function() {
      var msg = "hello4";
      return this.msg;
    })());
  }
};

obj.sayHello();