Skip to content

Instantly share code, notes, and snippets.

@gresrun
Forked from xetorthio/gist:1715910
Created February 28, 2012 04:11
Show Gist options
  • Save gresrun/1929350 to your computer and use it in GitHub Desktop.
Save gresrun/1929350 to your computer and use it in GitHub Desktop.
function isPrime(n) {
if (n<2) return false;
if (n==2) return true;
for (var i=2; i<(n/2); i++) { if (n%i==0) return false; }
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment