challenge-algorithms-v2.0-d.../05-isPrime/index.js

8 lines
181 B
JavaScript
Raw Permalink Normal View History

export function isPrime(value) {
// implementar logica aqui
for(let i=2;i <= Math.sqrt(value);i++){
if(value % i == 0 || value < 2)
return false;
}
return true
}