🚧operator

🚧 under construction

JSstatementexpressionoperator

(expression)

arithmetic / comparison / logical / assignment expressions, categorized as:

🌟table of 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)

property access and invocation expressions have higher precedence than any of the operators.

  • most operators are represented by punctuator(s).

  • some are represented by keyword(s) such as delete and instanceof.

Last updated