Zusammenfassung der Ressource
Frage 1
Frage
We think of variables as [blank_start]buckets[blank_end], they can contain a specific value.
Frage 2
Frage
If we initiate a new variable but do not assign it a value yet (e.g. var myNewVariable;), what value would this variable contain?
Antworten
-
"" (an empty string)
-
undefined
-
null
Frage 3
Frage
Which of the below demonstrates good variable naming conventions?
Frage 4
Frage
We bind a value to a variable using the [blank_start]assignment[blank_end] operator.
Frage 5
Frage
After a variable has been assigned a value, it cannot be changed.