Guest User

Untitled

a guest
Jun 17th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // 1
  2. const isOutOfRange = var < limit;
  3. const isMultipleOf3 = var % 3 === 0;
  4. const isSomething = someCostlyCalculation(var);
  5.  
  6. if(isOutOfRange && isMultipleOf3  && isSomething ) {
  7.  // ..
  8. }
  9.  
  10. // 2
  11. if(var < limit && var % 3 === 0 && someCostlyCalculation(var)) {
  12.  
  13. }
Add Comment
Please, Sign In to add comment