feat: cria algoritmo que retorne se o numero passado é primo ou não.

This commit is contained in:
Emmanuel Vitor Pereira de Jesus 2022-10-31 13:37:47 -03:00
parent 5a8fa6be43
commit b3864e812b

View File

@ -1,4 +1,11 @@
export function isPrime(value) {
// implementar logica aqui
let numberOfDivisors = 0
for (let i = 1; i <= value; i++) {
if ((value % i) === 0) {
numberOfDivisors++;
}
}
return (numberOfDivisors === 2) ? true : false
}