AllenYuan

isFavorite userschema

May 11th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //...
  2. // check if the favoriteid is
  3. UserSchema.methods.isFavorite = function(id){
  4.   return this.favorites.some(function(favoriteId){
  5.     return favoriteId.toString() === id.toString();
  6.   });
  7. };
  8. //...
Advertisement
Add Comment
Please, Sign In to add comment