Skip to content

Instantly share code, notes, and snippets.

@madrobby
Created October 19, 2010 20:06
Show Gist options
  • Save madrobby/634992 to your computer and use it in GitHub Desktop.
Save madrobby/634992 to your computer and use it in GitHub Desktop.
// Solution to Part 2.
function isPrime(num) {
var prime = num != 1;
for ( var i = 2; i < num; i++ ) {
if ( num % i == 0 ) {
prime = false;
break;
}
}
return prime;
}
isPrime = isPrime.cached();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment