JSFiddle - React, Tailwind, and code Playground
by rmurphey
JavaScript
var foo = {}
function baz () {
console.log('baz');
};
foo.bar = function bar () {
console.log('bar');
};
baz(); // works
foo.bar(); // works
bar(); // ReferenceError: bar is not defined