DEV Community

Discussion on: Do you code `if (foo == true) ` in Java?

Collapse
 
sam_ferree profile image
Sam Ferree

The name of the variable matters Is it a noun? or a verb/action phrase?

if(bigEndian== true) {
  //Do true stuff
}

if (shouldWait) {
  //Do true stuff
}