Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // equal signs are not aligned
- let time = randomTime(300, 1000);
- let holeLocation = randomPlace(holes);
- let hole = holes[holeLocation];
- // vs
- // equals signs are aligned
- let time = randomTime(300, 1000);
- let holeLocation = randomPlace(holes);
- let hole = holes[holeLocation];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement