Value
A value is data and may be the result of evaluating an expression or the contents of a variable.
Related concepts: ValueEvaluationVariable
Closest Wikipedia entry: Value (computer science) — In computer science and software programming, a value is the representation of some entity that can be manipulated by a program. The members of a type are the values of that type. The "value of a variable" is given by the corresponding mapping in the environment.
Misconceptions about Value26 documented Misconceptions
Check YourselfCallbackParametersInCaller
Parameters of a callback function may be written as parameters of the caller functionEqualityOperatorComparesObjectsValues
The equality operator compares two objects' valuesEqualityOperatorComparesOnlyTypes
The equality operator '==' compares only the types of the operandsFunctionAsValueWithParentheses
To use a function as a value, one needs to have parentheses after its nameNoReturnValue
Functions without return statements return no value at allNullAndUndefinedAreTheSame
The values null and undefined are the sameNullIsObject
null is an objectTypeofNullIsNull
The value null is of type 'null'