Skip to content

Instantly share code, notes, and snippets.

@kungfux
Last active November 27, 2016 17:57
Show Gist options
  • Select an option

  • Save kungfux/24df3ae82a3ad03f5ac9138bfd8f91dd to your computer and use it in GitHub Desktop.

Select an option

Save kungfux/24df3ae82a3ad03f5ac9138bfd8f91dd to your computer and use it in GitHub Desktop.
Check is number prime
export const isPrime = (a) => {
let resultCount = 0;
let b = a;
while(b >= 1) {
if (a % b === 0)
resultCount++;
b--;
}
return resultCount === 2;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment