Latihan
function isPrime(num) {
var caa = 2;
for (var v = 2; v < num; v++) {
if (num % v == 0) {
caa = 0;
}
}
if (caa == 2) {
console.log(num + " BILANGAN PRIMA");
} else {
console.log(num + " BUKAN BILANGAN PRIMA");
}
}
isPrime(7);INFO