feat: Adiciona 05-isPrime

This commit is contained in:
Izabela Balizardo 2022-10-29 19:07:03 -03:00
parent c0b30c28d8
commit 63486a6394

View File

@ -1,4 +1,11 @@
export function isPrime(value) {
// implementar logica aqui
for (var i = 2; i < value; i++)
if (value % i === 0){
return false
}
return value > 1
}