Please enable JavaScript.
Coggle requires JavaScript to display documents.
JavaScript - Coggle Diagram
JavaScript
-
-
-
Types
Primitive Types
-
-
-
undefined
undefined vs. undeclared vs. uninitialized =>
- undeclared = it has never been created in any scope we have access to.
- undefined = we have a variable, but at the moment, it has no value
- uninitialized = temporal dead zone
-
symbol
a symbol value is created by invoking the function Symbol, which dynamically produces an anonymous, unique value
-
-
-
-
-
-