ES6 - Prototipo

La propiedad del prototipo le permite agregar propiedades y métodos a cualquier objeto (Número, Booleano, Cadena y Fecha, etc.).

Note - El prototipo es una propiedad global que está disponible con casi todos los objetos.

Utilice la siguiente sintaxis para crear un prototipo booleano.

object.prototype.name = value

Ejemplo

El siguiente ejemplo muestra cómo usar la propiedad prototype para agregar una propiedad a un objeto.

<html>
   <head>
      <title>User-defined objects</title>
      <script type="text/javascript">
         function book(title, author){
            this.title = title;
            this.author = author;
         }
      </script>
   </head>
   <body>
      <script type="text/javascript">
         var myBook = new book("Perl", "Tom");
         book.prototype.price = null;
         myBook.price = 100;
         document.write("Book title is : " + myBook.title + "<br>");
         document.write("Book author is : " + myBook.author + "<br>");
         document.write("Book price is : " + myBook.price + "<br>");
      </script>
   </body>
</html>

La siguiente salida se muestra en la ejecución exitosa del código anterior.

Book title is : Perl
Book author is : Tom
Book price is : 100