Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2. <head>
  3. <title>Create a Object</title>
  4. </head>
  5. <body>
  6.  
  7. <script>
  8.     function Student(name) {
  9.         this.name = name;
  10.     }
  11.    
  12.     Student.prototype.getName = function() {
  13.         return this.name;
  14.     };
  15.     var obj = new Student("Hello");
  16.     document.write(obj.getName());
  17. </script>
  18.  
  19. </body>
  20. </html>