Operand ↔ Variable to manipulate by JS Operator
aka Operands
References
typeof↔ JS Operator returnstringof 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 returnbooleanif both Operand of same Type!==↔ strict INEquality Operator returnbooleanif both Operand NOT of same Typevoid↔ JS Operator to evalute Operand as Expression & returnundefinedCoercion↔ (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 returnbooleanif__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 asnumberJS Operator↔ reserved JS Syntax to perform built-in function on Operands?↔ Declarative JS Operator to assign first Truthy Operand else fallback