hey everyone
how to i go about phrasing an “or” inside of an if statement
for example:
if( functionA “or” functionB)
{
do this;
}
kinda like the == and but to mean ,“or”
hey everyone
how to i go about phrasing an “or” inside of an if statement
for example:
if( functionA “or” functionB)
{
do this;
}
kinda like the == and but to mean ,“or”
||
thanks!