๐ธundefined
๐ง under construction
JS โฉ scope โฉ global โฉ global object โฉ property โฉ undefined
( read-only global object property )โ automatically assigned to
undefined
is not a keywordโ
is not a literalโ
is an immutable & read-only property of the global objectโ
JS doesn't throw any errors if you declare it in the global scope.
has no primitive wrapper, can't call methods, has no properties.
with a function in block (FiB)
sloppy mode: โ hoisted / initialized to undefined (in outer scope)
strict mode: โ ReferenceError (invisible in outer scope)โ
Last updated