Answers for "how to add amount in array javascript base on two array values"

1

how to add multiple elements to A new array javascript

let vegetables = ['parsnip', 'potato']
let moreVegs = ['celery', 'beetroot']

// Merge the second array into the first one
// Equivalent to vegetables.push('celery', 'beetroot')
Array.prototype.push.apply(vegetables, moreVegs)

console.log(vegetables)  // ['parsnip', 'potato', 'celery', 'beetroot']
Posted by: Guest on November-02-2020
-1

sum of two array in javascript

function sumArray(a, b) {
      var c = [];
      for (var i = 0; i < Math.max(a.length, b.length); i++) {
        c.push((a[i] || 0) + (b[i] || 0));
      }
      return c;
}
Posted by: Guest on May-03-2020

Code answers related to "how to add amount in array javascript base on two array values"

Code answers related to "Javascript"

Browse Popular Code Answers by Language