Answers for "how to are number values and calculate the sum of the two numbers in javascript"

0

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
0

JS two numbers in array whose sum equals a given number

let twoSum = (array, sum) => {
    let hashMap = {},
      results = []

        for (let i = 0; i < array.length; i++){
            if (hashMap[array[i]]){
                results.push([hashMap[array[i]], array[i]])
            }else{
                hashMap[sum - array[i]] = array[i];
            }
          }
          return results;
    }
console.log(twoSum([10,20,10,40,50,60,70,30],50));
Posted by: Guest on December-20-2021

Code answers related to "how to are number values and calculate the sum of the two numbers in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language