gpt4 book ai didi

javascript - 将比较运算符的字符串表示形式转换为实际的比较运算符

转载 作者:行者123 更新时间:2023-11-27 22:57:55 25 4
gpt4 key购买 nike

我正在尝试在 JavaScript 中创建一个动态函数,在其中我可以将一个对象与另一个对象进行比较,并将比较运算符作为字符串值传递给该函数。

例如像这样的两个对象:

{value: 1, name: "banana"}
{value: 2, name: "apples"}

我想比较香蕉和苹果,有没有办法可以传递比较运算符的字符串表示形式,然后将其用作函数中的实际比较运算符?

function compare (first, second, comparator) {

return first.id (comparator) second.id;

}

e.g compare(apple,banana,"<=");
//return true

compare(apple,banana,"===");
//return false

等等

当然,我可以在比较器字符串上使用 switch 或 if 语句来实现,即

 if (comparator === "<=")
return first.id <= second.id
if (comparator === "===")
return first.id === second.id

但我想知道是否有更好、更有效的方法来避免需要这样的 switch/if 语句。

最佳答案

虽然这在某些语言中是可能的,但 JavaScript 不是其中之一。

我个人认为这是一个坏主意,因为它非常接近eval领域。我认为你应该将运营商列入白名单并定义他们的行为:

switch(comparator) {
case "<=": return first.id <= second.id;
case "===": return first.id === second.id;
// ...
// you can have synonyms:
case ">=":
case "gte": return first.id >= second.id;
// or even nonexistant operators
case "<=>": // spaceship!
if( first.id === second.id) return 0;
if( first.id < second.id) return -1;
return 1;
// and a catch-all:
default:
throw new Error("Invalid operator.");
}

关于javascript - 将比较运算符的字符串表示形式转换为实际的比较运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37415744/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com