var x = 9; var module = { x: 81, getX: function() { return module.x; } }; alert(module.getX()); var getX = module.getX; alert(getX());