lemansky

Untitled

Nov 19th, 2020
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Document</title>
  6. </head>
  7. <body>
  8.    
  9.     <script>
  10.         document.addEventListener("DOMContentLoaded", function(event){
  11.  
  12.             function Product(name, price){
  13.                 this.name = name;
  14.                 this.price = price;
  15.             }
  16.  
  17.             Product.prototype.printProduct = function(){
  18.                 console.log(this.name + " : " + this.price);
  19.             }
  20.  
  21.             ketchup = new Product("ketchup", "5.99");
  22.             mustard = new Product("mustard", "4.99");
  23.  
  24.             ketchup.printProduct();
  25.             mustard.printProduct();
  26.  
  27.         });
  28.     </script>
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment