feat: Soluciona o exercício 05 - Is prime
This commit is contained in:
parent
2fed2845e9
commit
1176d331b2
@ -1,4 +1,9 @@
|
||||
export function isPrime(value) {
|
||||
// implementar logica aqui
|
||||
for(let i = 2; i < value; i++)
|
||||
if(value % i === 0) {
|
||||
return false
|
||||
};
|
||||
|
||||
return value > 1;
|
||||
}
|
Loading…
Reference in New Issue
Block a user