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