I'm not speak English very well, and I have a question about how I can call the symbols = / ≥ / ≤.
To describe them with a word in Portuguese, we use sinal (signal).
Which is the correct term in English? I want a single word to describe all three symbols, not three separate words.
EDIT
I want knows the better term to use in my function name getConstraintSign.
export const getConstraintSign = function(constraint) {
return constraint.greater ? '≥' : constraint.less ? '≤' : '=';
}
AaBbCc...123...!@#$...and all other manner of things produced by computers/typewriters/handwriting and the like. "Symbol" is a bit more specific, but symbols would include many additional things such as $\heartsuit\spadesuit!&\dots$ as well, things that both are and are not used specifically for mathematics. – JMoravitz Mar 21 '18 at 18:11getRelationalOperatorI would suggestgetOperator.– saulspatz Mar 21 '18 at 18:35