forked from M3-Academy/challenge-algorithms-v2.0
|
||
---|---|---|
.. | ||
index.js | ||
index.test.js | ||
readme.md |
Desafio 05: É primo?
Faça um algoritmo que retorne se o numero passado é primo ou não
Exemplo
isPrime(7) // true
isPrime(10) // false
isPrime(11) // true