范围内的质数-JavaScript

我们需要编写一个JavaScript函数,该函数接受两个数字,例如a和b,并返回a和b之间的质数总数(包括a和b,如果它们是质数的话)。

例如-

If a = 2, and b = 21, the prime numbers between them are 2, 3, 5, 7, 11, 13, 17, 19

它们的计数为8。我们的函数应返回8。

让我们为该函数编写代码-

示例

以下是代码-

const isPrime = num => {
   let count = 2;
   while(count < (num / 2)+1){
      if(num % count !== 0){
         count++;
         continue;
      };
      return false;
   };
   return true;
};
const primeBetween = (a, b) => {
   let count = 0;
   for(let i = Math.min(a, b); i <= Math.max(a, b); i++){
      if(isPrime(i)){
         count++;
      };
   };
   return count;
};
console.log(primeBetween(2, 21));

输出结果

以下是控制台中的输出-

8


猜你喜欢