Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Constructor for items
  2. shop.addItem = function(title, description, price) {
  3.     'use strict';
  4.     this.title = title;
  5.     this.description = description;
  6.     this.price = price;
  7.     //Adds values from contructor to array
  8.     //Adds values from contructor to array
  9.     shop.items.push({title: this.item, description: this.description, price: this.price});
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement