Last active
April 23, 2021 21:10
-
-
Save dayaki/637b708b8749999309b850ca0e3a5231 to your computer and use it in GitHub Desktop.
Mongoose Tips
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
// compare mongoose id | |
user._id.toString() === request.params.id | |
// comparing mongoose ids and strings | |
first._id.equals(another._id) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment