Skip to content

Instantly share code, notes, and snippets.

@rudiedirkx
Created April 30, 2014 18:40
Show Gist options
  • Select an option

  • Save rudiedirkx/770b434e77841bf5d982 to your computer and use it in GitHub Desktop.

Select an option

Save rudiedirkx/770b434e77841bf5d982 to your computer and use it in GitHub Desktop.
function isPrime(n) {
var b = Math.sqrt(n);
if (Math.floor(b) == b) return false;
b = Math.floor(b);
while (b-- > 2) {
var a = n/b;
if (Math.floor(a) == a) return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment