Edit in JSFiddle

var DeathStar = {
	name: "Death Star",
  destroy: function(planet){
  	console.log("Destroying " + planet);
    console.log(this);
  }
};

DeathStar.destroy("Alderaan");

/*
var fn = DeathStar.destroy;
fn();
*/