Skip to content

Instantly share code, notes, and snippets.

@heymichaelp
Last active August 29, 2015 14:02
Show Gist options
  • Save heymichaelp/a21c8621e3f2392768f7 to your computer and use it in GitHub Desktop.
Save heymichaelp/a21c8621e3f2392768f7 to your computer and use it in GitHub Desktop.
Value Objects: Example
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