var car = { color: 'red', getColor: function() { alert(this.color); } }; car.getColor(); var getColor = car.getColor; getColor();