So I have an array which shows which levels are allowed to do things.
allowed = ["user", "admin"]
There's another array that shows which groups a user belongs to.
groups = ["user", "crazy"]
What's the best way to search the allowed array for ANY of the groups a user belongs to? I know it's easy but I'm drawing a real blank here...