const isPrime = num => {
for(let i = 2, s = Math.sqrt(num); i <= s; i++)
if(num % i === 0) return false;
return num >
2;
}
It has sweet and sad music, From final fantasy game, to older classical music, and drama series musical piece. Now it has crap loadss of stuff
const isPrime = num => {
for(let i = 2, s = Math.sqrt(num); i <= s; i++)
if(num % i === 0) return false;
return num >
2;
}
No comments:
Post a Comment