Created
February 4, 2019 01:29
-
-
Save alejandrolechuga/b1923af0450066d43c55e446cd436773 to your computer and use it in GitHub Desktop.
prototype ejemplo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var libro = new Book('Don quijote', 1612); | |
var libro2 = new Book('Señor de los anillos', 1930); | |
// Cuando comparamos | |
libro.getName === libro2.getName; // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment