Operand
↔ Variable to manipulate by JS Operator
aka Operands
References
typeof
↔ JS Operator returnstring
of Operand Type+
↔ Addition Operator to convert Operand to Primitive & then add/join in either String Mode or Number ModeString Mode
↔ If one Operand isstring
, Coercion other to string, & return concatenated stringNumber Mode
↔ If no Operand isstring
, Coercion tonumber
& return sum===
↔ strict Equality Operator returnboolean
if both Operand of same Type!==
↔ strict INEquality Operator returnboolean
if both Operand NOT of same Typevoid
↔ JS Operator to evalute Operand as Expression & returnundefined
Coercion
↔ (mechanism) to Implicit auto convert Type of Primitive Operand by JS Compiler??
↔ Nullish Coalescing Operator to assign left calling Operand if!==
null
/undefined
, else assign fallback value (right Operand)instanceof
↔ JS Operator to returnboolean
if__proto__
(of Constructor Function) exists on calling Operand's prototype chainBitwise Assignment Operator
↔ JS Operator to Coerce Operand to 32-bit binary, compute math as bits & return asnumber
JS Operator
↔ reserved JS Syntax to perform built-in function on Operands?
↔ Declarative JS Operator to assign first Truthy Operand else fallback