forked from M3-Academy/challenge-algorithms-v2.0
feat(05-isPrime): Cria a função
This commit is contained in:
parent
da3c5aab72
commit
fbe17ccd07
@ -1,4 +1,17 @@
|
|||||||
export function isPrime(value) {
|
export function isPrime(value) {
|
||||||
// implementar logica aqui
|
if(value <= 1){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let i = 2; i < value; i++ ){
|
||||||
|
if (value % i === 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user