Nodejs Number Prime Number Check sumPrimes(num)

Here you can find the source of sumPrimes(num)

Method Source Code

/*//from  w  w  w  .ja  va  2s . com
Sum all the prime numbers up to and including the provided number.
A prime number is defined as a number greater than one and having only two divisors, 
one and itself. For example, 2 is a prime number because it's only divisible by one and two.
The provided number may not be a prime.

Here are some helpful links:
For Loops
Array.prototype.push() helpful links:
Remainder
*/

function sumPrimes(num) {
  var primes = [];
  for (var i = 2; i <= num; i++) {
    // i=2,3,4,5....
    var notPrime = false;
    for (var current = 2; current <= (i - 1); current++) {
        if (i % current === 0) {
          notPrime = true;
        }
    }
    if (notPrime === false) 
      primes.push(i);
}
  var sum = primes.reduce(function(pv, cv) { 
              return pv + cv;
            });
  return sum;
}

sumPrimes(10);
/*
sumPrimes(10) should return a number.
sumPrimes(10) should return 17.
sumPrimes(977) should return 73156.
*/

Related

  1. primeFactorization()
    Number.prototype.primeFactorization = function () {
        "use strict";
        var ans = [];
        var primes = [];
        var temp = this;
        for (let i = 2; i <= this / 2; i += 1) {
            if (i.divisors().length == 2) {
                primes.push(i);
        for (let i = 0; i < primes.length; i += 1) {
            while (temp.isDivisor(primes[i])) {
                ans.push(primes[i]);
                temp = temp / primes[i];
        return ans;
    };
    
  2. primeFactors()
    "use strict";
    Number.prototype.primeFactors = function() {
      var v, i;
      v = null;
      for (i = 2; i < this - 1; i += 1) {
        if (this % i === 0) {
          v = i;
          break;
      if (v) {
        return [v].concat(Math.floor(this / v).primeFactors());
      } else {
        return [this];
    };
    console.log(Math.max.apply(null, (600851475143).primeFactors()));
    
  3. primeFactors()
    "use strict";
    var i, j, triangleNumber;
    Number.prototype.primeFactors = function() {
      var v, i;
      v = null;
      for (i = 2; i < this - 1; i += 1) {
        if (this % i === 0) {
          v = i;
          break;
    ...
    
  4. primeFactors()
    Number.prototype.primeFactors = function() {
      var number = this.valueOf();
      var primeFactors = [];
      isPrime = function(primeCandidate) {
        var p = 2;
        var top = Math.floor(Math.sqrt(primeCandidate));
        while(p<=top){
          if(primeCandidate%p === 0){ return false; }
          p++;
    ...
    
  5. primeFactors()
    "use strict";
    var i, primeFactorLists;
    Number.prototype.primeFactors = function() {
      var v, i;
      v = null;
      for (i = 2; i < this - 1; i += 1) {
        if (this % i === 0) {
          v = i;
          break;
    ...
    
  6. sumPrimes(num)
    function sumPrimes(num) {
      function isPrime(number) {
        for (var i = 2; i < number; i++) {
          if (number % i === 0) {
            return false;
        return true;
      var sum = 0;
      for (var j = 2; j <= num; j++) {
        if (isPrime(j)) {
          sum += j;
      return sum;
    sumPrimes(10);