1 messages · Page 1 of 1 (latest)
If X = 11 or 22 or 33 then show Y
Whats the simplest way toncode this function?
[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]
[H, if(11 == X || 22 == X || 33 == X): showY]