🔰lvalue

LHS reference of variable/property/element.

JSstatementexpressionoperatorterm ⟩ lvalue

(expression)

variable / (object) property / (array) element that appears on the left side of an assignment.

delete expects its operand to be an lvalue, if it is not an lvalue, the operator takes no action and returns true.

lvalue can be used in for-of / for-in loop.

Last updated