是的,有一个对象和适当的功能,比如
var comparer = { '>': function (a, b) { return a > b; } };
使用:
if (comparer[operator](x, y)) { doSomething(); }