Last active
August 29, 2015 14:02
-
-
Save heymichaelp/a21c8621e3f2392768f7 to your computer and use it in GitHub Desktop.
Value Objects: Example
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 myGrade = new Grade(0.65); | |
var myOtherGrade = new Grade(0.65); | |
myGrade === myOtherGrade; // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment