Last active
August 29, 2015 14:02
-
-
Save heymichaelp/58f8e3f439b3ef17953a 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 firstStudent = {grade: new Grade(0.45)}; | |
var secondStudent = {grade: new Grade(0.70)}; | |
firstStudent.grade.isPassing() //=> false | |
firstStudent.grade.isBetterThan(secondStudent.grade); //=> false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment