在 JavaScript 中将字符串作为数学表达式进行求值

javascriptweb developmentfront end technologyobject oriented programming

我们需要编写一个 JavaScript 函数,该函数接受字符串化的数学等式。该函数应返回提供给该函数的等式的结果。

例如:如果等式为 −

const str = '1+23+4+5-30';

则输出应为 3

示例

其代码为 −

const str = '1+23+4+5-30';
const compute = (str = '') => {
   let total = 0;
   str = str.match(/[+\−]*(\.\d+|\d+(\.\d+)?)/g) || [];
   while (str.length) {
      total += parseFloat(str.shift());
   };
   return total;
};
console.log(compute(str));

输出

控制台中的输出将是 −

3

相关文章