Last active
September 2, 2016 22:15
-
-
Save fonzerelly/7796847 to your computer and use it in GitHub Desktop.
reason of missbehaviour
This file contains 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
//expected call for book[0]: | |
_.result(books[0], "numberOfPages"); | |
//evaluated call: | |
_.result(books[0], 0, books, "numberOfPages"); | |
//which means effectivly | |
_.result(books[0], 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment