To remove documents using Node.js Mongoose without iterating, you can try
FBFriendModel.find({ id:333 }).remove( callback );
Or
FBFriendModel.find({ id:333 }).remove().exec();
The mongoose.model.find method returns a Query, which has a remove function.