What purpose does name have in the following statement?
var myArray =[], name;
I usually initialize my arrays as the following:
var myArray =[];
|
What purpose does name have in the following statement?
I usually initialize my arrays as the following:
|
|||
|
|
|
|
|||||||||||||
|
|
You are actually initialising two variables there, You set Your code is equivalent to this:
|
|||
|
|
|
In JavaScript multiple variable assignments can be separated by commas, eliminating the need for repetitive var statements.
is equivalent to
|
|||
|
|
|
It doesn't affect
|
|||
|
|
|
The recommended way (clean and short as possible) of writing this kind of code is the following:
|
|||
|
|