diff --git a/05-isPrime/index.js b/05-isPrime/index.js index ec9c4ac..a27150e 100644 --- a/05-isPrime/index.js +++ b/05-isPrime/index.js @@ -1,4 +1,11 @@ export function isPrime(value) { // implementar logica aqui + let numero = value + + for (let i = 2; i < numero; i++) + if (numero % i === 0) { + return false; + } + return numero > 1; } \ No newline at end of file