var test = { int: function(data) { this.data = data; }, foo: function() { alert(this.data); } }; test.int('list'); test.foo();