Does Arcade support using IN conditions like SQL?
I get a syntax error in when I try to do so, here is an example:
var taxa = IIF(value IN ('species1', 'species2'), 'mammal', 'reptile')
Or is there another way to go about this? The species list I want to check if the value is in or not has 23 entries so I'd prefer not to write individual conditional statements for each of them.