Skip to content

Instantly share code, notes, and snippets.

@giannispan
Created February 1, 2016 17:15
Show Gist options
  • Save giannispan/9ba54ca6f57d849ebf80 to your computer and use it in GitHub Desktop.
Save giannispan/9ba54ca6f57d849ebf80 to your computer and use it in GitHub Desktop.
Is a number prime?
function isPrime(num) {
var start = 2;
while (start <= Math.sqrt(num)) {
if (num % start++ < 1) return false;
}
return num > 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment