最佳答案
Here's something simple to check if user is in moderator. But I want to check if user is not in moderator.
if err && user in moderators
return
Intuitively it would be like this
if err && user isnt in moderators
return
But obviously this doesn't work. What's the best way to do it?