&& And || Or ! Not Does opposite Example Boolean Logic-> (== != )then && then ||, brackets always come first! A) T && F =F B) T && T =T C) F && F =F D) F && T =F E) T || F =T F) F || T =T G) F || F =F H) T || T =T I) (T && F) || T = F || T = T J) (T && T) && (F || T) || T = T && T || T = T || T = T K) !((T || F) && T) = !(( T ) && T) = !( T ) = F Random Numbers Math.floor(Math.random() * 3) <- Gives a random number 0, 1, 2, 3 Math.floor(Math.random() * 2) + 1<- Gives a random number 1, 2, 3