Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solution #205

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
cambio solucion esprimo
  • Loading branch information
agusamani committed Jun 14, 2020
commit 80f19aae5b058c47534e94883d8da8f0b763a34b
3 changes: 1 addition & 2 deletions 03-JS-II/homework/homework.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,8 @@ function esPrimo(numero) {
if(numero % i === 0) {
return false;
}
return true;
}

return true;
}


Expand Down