2022-10-27 15:07:13 +00:00
|
|
|
export function isPrime(value) {
|
|
|
|
// implementar logica aqui
|
2022-11-02 14:52:22 +00:00
|
|
|
for (let index = 2; index < value; index++) {
|
|
|
|
if (value % index === 0) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return value > 1;
|
2022-10-27 15:07:13 +00:00
|
|
|
}
|