+ 1
Is it possible to change variable values over time?
6 Réponses
+ 2
Yes, it is. You can't change the value of constants however.
+ 1
yes it is
+ 1
yes
+ 1
use var if you will change the value of the variable, use let when no need to change the value.
+ 1
yes you can change the value unless it is constant
0
You simply type <name_of_variable> = <new_value>, without preceding name by "var".