Are Variable Operators Possible?
Not out of the box. However, it’s easy to build by hand in many languages including JS. var operators = { ‘+’: function(a, b) { return a + b }, ‘<‘: function(a, b) { return a < b }, // … }; var op = ‘+’; alert(operators[op](10, 20)); You can use ascii-based names like plus, … Read more