Skip to content

Instantly share code, notes, and snippets.

@mhansen
Created August 25, 2009 05:03
Show Gist options
  • Save mhansen/174481 to your computer and use it in GitHub Desktop.
Save mhansen/174481 to your computer and use it in GitHub Desktop.
var car = {
"odometer" : 100000,
"drive" : function(distance) {
if (distance > 0) this.odomoter += distance;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment