Skip to content

Instantly share code, notes, and snippets.

@piyonishi
Last active December 22, 2015 03:19
Show Gist options
  • Save piyonishi/6409611 to your computer and use it in GitHub Desktop.
Save piyonishi/6409611 to your computer and use it in GitHub Desktop.
var Item = (function () {
function Item(price) {
this.price = price;
}
Item.prototype.showPrice = function () {
alert(this.price);
};
return Item;
})();
var i = new Item(200);
i.showPrice();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment