Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function isPrime(num) {
- if (num % 2 === 0) {
- console.log('false')
- } else {
- console.log('true')
- }
- }
- isPrime(7);
- isPrime(8);
- isPrime(81);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement