Skip to content

Instantly share code, notes, and snippets.

@ls404
Created March 16, 2018 18:18
Show Gist options
  • Select an option

  • Save ls404/4696bb06032dffef7f2d5bafbb0c4821 to your computer and use it in GitHub Desktop.

Select an option

Save ls404/4696bb06032dffef7f2d5bafbb0c4821 to your computer and use it in GitHub Desktop.
function isPrime(num) {
let prime = true;
for (let d = 2; d <=
Math.sqrt(num); d++) {
if (num % d == 0) {
prime = false;
break;
}
}
return prime && (num > 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment