JSFiddle - React, Tailwind, and code Playground
by Dmitry
JavaScript
var title = "Global Title";
var exampleObject = {
"title": "Example Title",
"showTitle": function () {
alert(this.title);
}
};
var showTitle = exampleObject.showTitle;
// Here is expected alert 'Global Title', but 'undefined'
showTitle();