forked from M3-Academy/challenge-algorithms-v2.0
feat(05): finished
This commit is contained in:
parent
433eb5906d
commit
835d645251
@ -1,4 +1,6 @@
|
|||||||
export function isPrime(value) {
|
export function isPrime(value) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
for (var divisão = 2; divisão < value; divisão++)
|
||||||
|
if (value % divisão == 0) return false;
|
||||||
|
return true;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user