I would like to know if there is a symbol which means "or", like "&&" means "and". I would like to use it in if statements such as:
Is that possible, or would I just have to use 2 if statements: 1 for each condition?
Thanks!
1 2 3 4 | if (variable1 == 1 OR variable2 == 1 ) { doSomething() } |