Skip to content

Instantly share code, notes, and snippets.

@mesalilac
Created August 8, 2021 22:03
Show Gist options
  • Select an option

  • Save mesalilac/6f7112d095d09d707dab8d2a70b1f38e to your computer and use it in GitHub Desktop.

Select an option

Save mesalilac/6f7112d095d09d707dab8d2a70b1f38e to your computer and use it in GitHub Desktop.
is prime number
function isPrime(num) {
var prime = num != 1;
for(var i=2; i<num; i++) {
if(num % i == 0) {
prime = false;
break;
}
}
return prime;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment