Skip to content

Instantly share code, notes, and snippets.

@amadden80
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save amadden80/33884dd28f924dccb452 to your computer and use it in GitHub Desktop.

Select an option

Save amadden80/33884dd28f924dccb452 to your computer and use it in GitHub Desktop.
function isPrime(n){
for(var i=2; i<n; 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