Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. // A
  2. if (isActive)
  3. doIt();
  4.  
  5. // B
  6. if (isActive) {
  7. doIt();
  8. }
  9.  
  10. // C
  11. isActive && doIt();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement