Guest User

Untitled

a guest
Feb 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. for (let i = 0; i <= 100; i++) {
  2. let isPrime = true;
  3.  
  4. if (i < 2) isPrime = false;
  5.  
  6. for (var j = 2; j < i; j++) {
  7. if (i % j === 0) isPrime = false;
  8. }
  9.  
  10. if (isPrime) console.log(i);
  11. }
Add Comment
Please, Sign In to add comment