what is the javascript program for product of first 10 prime numberswhat is the javascript program for product of first 10 prime numbers
javascript Copy code // Define a function to check if a number is prime function isPrime(n) { if (n < 2) { return false; } for (let i = 2;