Skip to content

Instantly share code, notes, and snippets.

@vasanthv
Created June 25, 2019 10:49
Show Gist options
  • Select an option

  • Save vasanthv/70262d48d095a4d5c3d56fb0fce008e1 to your computer and use it in GitHub Desktop.

Select an option

Save vasanthv/70262d48d095a4d5c3d56fb0fce008e1 to your computer and use it in GitHub Desktop.
function isPrime(num) {
if (num > 2 && num % 2 === 0) return false;
for (var i = 3; i < Math.sqrt(num); i += 2) {
if (num % i === 0) return false;
}
return num > 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment