#help with if or

1 messages · Page 1 of 1 (latest)

wraith abyss
#

If  X = 11 or 22 or 33 then show Y

Whats the simplest way toncode this function?

vagrant crescent
#
[H, if(json.contains('[11,22,33]',X)): show Y]```
#

You can also just use an or [H, if(11 == X || 22 == X || 33 == X): showY]