Advertisement
Mvelchev

Untitled

May 29th, 2022
741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function isPrime(num) {
  2.     if (num % 2 === 0) {
  3.         console.log('false')
  4.     } else {
  5.         console.log('true')
  6.     }
  7. }
  8.  
  9.  
  10.     isPrime(7);
  11.     isPrime(8);
  12.     isPrime(81);
  13.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement