These seems elementary, but I'm not finding it. I am building an attribute rule using Arcade and I would like to select several different values to meet a criteria. In SQL, I could do:
IF(fieldname IN ("value1","value2","value3"))
But in ARCADE, I can only seem to do:
IF(fieldname == "value1" || fieldname == "value2" || fieldname == "value3" )
Is there a way to simplify this expression like using the "IN" as in SQL?