Skip to content

Instantly share code, notes, and snippets.

@jahilldev
Last active September 13, 2022 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jahilldev/4c8705c62085b9d30c358065c4244747 to your computer and use it in GitHub Desktop.
Save jahilldev/4c8705c62085b9d30c358065c4244747 to your computer and use it in GitHub Desktop.
function isPrimeNumber(value) {
for(let index = 2; index < value; index++) {
if(value % index === 0) {
return false;
}
return value > 1;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment