JSFiddle - React, Tailwind, and code Playground

by Arun Tummala

JavaScript

var obj = {
  hello: 'hello',
  callHello: function(param) {
    return this.hello + ' ' +  param
  }
}

alert(obj.callHello('world'))
console.info(obj.callHello('world'))