JSFiddle - React, Tailwind, and code Playground
by Taleeb Anwar
JavaScript
var synthetic = (function() {
return {
getContacts: function() {
console.log('inner');
window.getContacts();
}
}
})();
getContacts = function() {
console.log("outer");
}
synthetic.getContacts();