Conditional Logic

And
if (condition1 && condition2) {
  // write code here to do something if both conditions are true
}
Or
if (condition1 || condition2) {
  // write code here to do something if either condition is true
}
Not
if (!condition) {
  // write code here to do something if the condition is false
}