This is a JS object with two properties.
Not using var puts the variable in the global scope
Although it is not a class, it can still have functions as properties
Functions can be bound in two different ways:
globe.myFunc = function() { };
or
globe = { ... myFunc: function() { } }
source share