添加数字字符串而不在JavaScript中使用转换库方法

我们需要编写一个包含两个数字字符串的JavaScript函数。该函数应在字符串中添加数字,而无需实际将其转换为数字或使用任何其他转换库方法。

例如-

如果输入字符串是-

const str1 = '123';
const str2 = '456';

那么输出应该是-

const output = '579';

示例

为此的代码将是-

const str1 = '123';
const str2 = '456';
const addStrings = (num1, num2) => {
   //让我们确保num1不短于num2-
   if (num1.length < num2.length) {
      let tmp = num2;
      num2 = num1;
      num1 = tmp;
   }
   let n1 = num1.length;
   let n2 = num2.length;
   let arr = num1.split('');
   let carry = 0;
   let total;
   for (let i = n1 − 1, j = n2 − 1; i >= 0; i−−, j−−) {
      let term2 = carry + (j >= 0 ? parseInt(num2[j]) : 0);
      if (term2) {
         total = parseInt(num1[i]) + term2;
         if (total > 9) {
            arr[i] = (total − 10).toString();
            carry = 1;
         } else {
            arr[i] = total.toString();
            carry = 0;
            if (j < 0) {
               break;
            }
         }
      }
   }
   return (total > 9 ? '1' + arr.join('') : arr.join(''));
};
console.log(addStrings(str1, str2));

输出结果

控制台中的输出将是-

579