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