Group,
I'm looking for a simple example to convert this logic to a javascript:
if
i != 3 or != 4
then
process more code
OR
if i = 2, or = 5, or = 6
then
process more code
I have found examples of (if (i ==2)) then process, but I have multiples that I need, such as (if i==2, or ==5, or ==6), but I cannot find correct syntax on a statement like this.
Thanks
cramd2
I'm looking for a simple example to convert this logic to a javascript:
if
i != 3 or != 4
then
process more code
OR
if i = 2, or = 5, or = 6
then
process more code
I have found examples of (if (i ==2)) then process, but I have multiples that I need, such as (if i==2, or ==5, or ==6), but I cannot find correct syntax on a statement like this.
Thanks
cramd2