Javascript function - converting string argument to operator(Javascript函数 - 将字符串参数转换为运算符)
问题描述
抱歉,如果我的问题不清楚,不知道如何措辞!
我正在尝试创建一个函数,该函数接受两个数字和一个包含运算符(例如'+'、'-'、'*'、'/')的字符串.
I'm trying to create a function that takes two numbers and a string which contains an operator (e.g. '+', '-', '*', '/').
我在字符串上使用了 .valueOf() 来提取运算符,但是 num1 和 num2 参数似乎没有计算为传递的数字参数.为什么会这样?
I've used .valueOf() on the string to extract the operator, however the num1 and num2 arguments do not seem to evaluate to the passed number parameters. Why is this happening?
function calculate(num1, operator, num2) {
return `num1 ${operator.valueOf()} num2`;
}
undefined
calculate(2, '+', 1);
"num1 + num2" //result
推荐答案
如果我理解您的要求,您可以使用 eval()
来实现:
If I understand your requirements, you could use eval()
to achieve this:
function calculate(num1, operator, num2) {
return eval(`${num1} ${operator} ${num2}`);
}
console.log(calculate(2, '+', 1)); // 3
或者,您可以通过使用开关块来避免使用 eval()
,它 将使您的代码更易于调试并且可能更安全:
Alternatively, you could avoid the use of eval()
by using a switch block, which would make your code easier to debug and potentially more secure:
function calculate(num1, operator, num2) {
switch (operator.trim()) { // Trim possible white spaces to improve reliability
case '+':
return num1 + num2
case '-':
return num1 - num2
case '/':
return num1 / num2
case '*':
return num1 * num2
}
}
console.log(calculate(2, '+', 1)); // 3
这篇关于Javascript函数 - 将字符串参数转换为运算符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Javascript函数 - 将字符串参数转换为运算符


基础教程推荐
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01