Script question
Posted: Fri Nov 06, 2015 10:20 am
Is this valid?
if ( a == 10 || b < 5 )
or should be
if( ( a == 10) || ( b < 5 ) )
or both are valid?
if ( a == 10 || b < 5 )
or should be
if( ( a == 10) || ( b < 5 ) )
or both are valid?