Created
February 17, 2012 18:40
-
-
Save cojohn/1854772 to your computer and use it in GitHub Desktop.
Is there a better way to test for a custom Object in an array of custom Objects?
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
// `id` is a custom Object and `Actor.getTips()` is an array of `id`s | |
Actor.prototype.hasTipped = function(id) { | |
return new RegExp(id.toString()) | |
.test(this.getTips().toString()); | |
} | |
/* | |
* Specifically, these are MongoDB ObjectIDs from the node-mongodb-native repository. | |
* Actor.getTips().indexOf(id) does not work because `===` returns false on, say, | |
* Actor.getTips()[0] === id. | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment