If you assign values to variables that have not yet been declared, the variables will automatically be declared.
These statements:
x=5; carname="Volvo"; |
have the same effect as:
var x=5; var carname="Volvo"; |
If you assign values to variables that have not yet been declared, the variables will automatically be declared.
These statements:
x=5; carname="Volvo"; |
have the same effect as:
var x=5; var carname="Volvo"; |
0 comments: