operator
🚧 under construction
Last updated
Was this helpful?
🚧 under construction
Last updated
Was this helpful?
JS ⟩ statement ⟩ expression ⟩ operator ⟩
arithmetic / comparison / logical / assignment expressions, categorized as:
prefix / infix / postfix operators.
JS operators usually convert the type of their operands as needed.
operator(s) that expect boolean operands will work with an operand of any type(every value is truthy or falsy)
arithmetic operators (+
, -
, *
, /
, %
, **
) operate on numbers.