Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created July 28, 2013 18:57
Show Gist options
  • Save ynonp/6099678 to your computer and use it in GitHub Desktop.
Save ynonp/6099678 to your computer and use it in GitHub Desktop.
var Product = function(name, price) {
this.price = price;
this.name = name;
this.apply_discount = function(pct) {
this.name *= (1-pct);
};
};
var p1 = new Product('foo', 20);
var p2 = new Product('bar', 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment