Skip to content

Instantly share code, notes, and snippets.

@krutz27
Created October 4, 2013 13:29
Show Gist options
  • Save krutz27/6825923 to your computer and use it in GitHub Desktop.
Save krutz27/6825923 to your computer and use it in GitHub Desktop.
var truck = function() {
this.turnLeft = function {
// turn left
return this;
}
this.turnRight = function {
// turn right
return this;
}
this.goReallyFast = function {
// go fast!
return this;
}
};
// My get-away plan
var myTruck = new truck();
myTruck.turnLeft().turnRight().goReallyFast();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment