Skip to content

Instantly share code, notes, and snippets.

@st3v3nhunt
Created March 30, 2011 21:05
Show Gist options
  • Save st3v3nhunt/895306 to your computer and use it in GitHub Desktop.
Save st3v3nhunt/895306 to your computer and use it in GitHub Desktop.
JSON JavaScript
Car = {
doors: 0,
fuel: '',
color: '',
changeFuel: function (fuel) {
fuel === 'petrol' ? Car.fuel = 'petrol' : Car.fuel = 'diesel';
}
};
Car.changeColor = function (color) {
Car.color = color;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment