Hello, thank you for taking the time to read this. I just need to know if this code means what I think it means.
if (Blah1 == 1 && Blah2 > 2 || Blah1 == 1 && Blah2 == 1) {
// Do Something.
}
So I am hoping that this means "If Blah1 is equal to 1 and Blah2 is greater then 2 then do this code OR IF Blah 1 is equal to 1 and Blah2 is equal to 1 then do this code." Is this what this means?
Thanks in advance!
↧