Reputation: 113
What do I add at the beginning and end of a section of code to repeat it 36 times before going on?
Upvotes: 0
Views: 8817
Reputation: 16675
You are looking for a for
loop: https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Statements/for
Upvotes: 2