What is the server-side formatter to check if a string exists in an array of strings?
["abc", "xyz"]
How do I check if "xyz" exists in that array?
At first I thought I would use the "Contains" formatter, but the description of it makes me think it's for "string in string", not "string in array of strings"
Interesting, it seems there's some magic here, .contains() is a formatter for strings, but "contains" is also implemented as a module function for the array Wappler component. This means I would have to use .contains exactly as in the screenshot, I couldn't e.g. use a Set Value with .contains() to check an array