JSFiddle - React, Tailwind, and code Playground
JavaScript
var module = {
self: this.module,
f1: function () {
console.log('self', self, this);
},
f2: function () {
this.f1();
}
};
module.f2();
var module = {
self: this.module,
f1: function () {
console.log('self', self, this);
},
f2: function () {
this.f1();
}
};
module.f2();