(function(window){ var lib = { a: 1, b: function() { alert(lib.a); } } window.blahblah = lib; })(window); blahblah.a = 10; blahblah.b();