You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should we mention that values can have multiple variables assigned to them (but that variables can only be assigned to one value)? For example, if var x = 4 and var y = 4, then x + y = 8. On the other hand, if you assign var test = 10 followed by var test = 20, then test + test = 40.
The text was updated successfully, but these errors were encountered:
Should we mention that values can have multiple variables assigned to them (but that variables can only be assigned to one value)? For example, if
var x = 4
andvar y = 4
, thenx + y = 8
. On the other hand, if you assignvar test = 10
followed byvar test = 20
, thentest + test = 40.
The text was updated successfully, but these errors were encountered: