Advertisement
Guest User

Untitled

a guest
Sep 17th, 2021
1,053
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // equal signs are not aligned
  2.  
  3. let time      = randomTime(300, 1000);
  4. let holeLocation = randomPlace(holes);
  5. let hole   = holes[holeLocation];
  6.  
  7. // vs
  8.  
  9. // equals signs are aligned
  10.  
  11. let time         = randomTime(300, 1000);
  12. let holeLocation = randomPlace(holes);
  13. let hole         = holes[holeLocation];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement