Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function forLoopTest() {
- for (i = 1; i <= 1000; i++) {
- if (i % 10 === 7) {
- console.log(i)
- }
- }
- }
- forLoopTest()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement