Skip to content

Instantly share code, notes, and snippets.

@jamesfoster
Created June 25, 2010 17:25
Show Gist options
  • Save jamesfoster/453146 to your computer and use it in GitHub Desktop.
Save jamesfoster/453146 to your computer and use it in GitHub Desktop.
var Vehicle = Class.extend({
wheels: function(){
return null; // does nothing.
}
});
var Car = Vehicle.extend({
wheels: functions(){
return 4;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment