// foo.js
var Foo = {};
Foo.hello = function(){
return "I am a foo";
}
// bar.js
var Bar = {};
Bar.hello = function(){
return "I am a bar";