Skip to content

Instantly share code, notes, and snippets.

View okitsutakatomo's full-sized avatar

takatomo okitsu okitsutakatomo

  • yokohama, japan
View GitHub Profile
function Item() {
this.initialize.apply(this, arguments);
}
Item.prototype = {
initialize: function(price) {
this.price = price;
},
showPrice: function() {
alert(this.price);
}