Skip to content

Instantly share code, notes, and snippets.

@sghall
Created January 19, 2017 06:35
Show Gist options
  • Save sghall/a06a92e6ec1a3bc02ea3ed974634b127 to your computer and use it in GitHub Desktop.
Save sghall/a06a92e6ec1a3bc02ea3ed974634b127 to your computer and use it in GitHub Desktop.
Is Prime Number JavaScript
function isPrime(num) {
for (var i = 2; i < Math.sqrt(num); i++) {
if (num % i === 0) return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment