2022-10-27 15:07:13 +00:00
|
|
|
export function isPrime(value) {
|
2022-10-30 17:50:30 +00:00
|
|
|
let contador = 0;
|
|
|
|
for (let index = 0; index <= value; index++) {
|
|
|
|
if (value % index === 0) {
|
|
|
|
contador = contador + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (contador === 2) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|