Skip to content

Instantly share code, notes, and snippets.

@kirbysayshi
Created December 9, 2010 00:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kirbysayshi/734146 to your computer and use it in GitHub Desktop.
Save kirbysayshi/734146 to your computer and use it in GitHub Desktop.
test for primeness in JS
(function(prime){
var i = 2;
while(i <= Math.sqrt( prime ) ){
if(prime % i ==0){
return false;
}
i++;
}
return true;
})(9400499);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment