🚧operator
🚧 under construction
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)
types of operators
assignment (
=, +=, -=, *=, /=, ...)logical operator (
&&,||,!)
yield* operator - application: *sequence()
➕ arithmetic operators (
+,-,*,/,%,**) operate on numbers.
Last updated
Was this helpful?