Answers for "sum of two numbers in javascript"

1

sum of two numbers 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-17-2021
-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 "sum of two numbers in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language