In the following javascript code there is [] being assigned as the value of a variable, what does it mean?
var openTollDebug = [];
|
In the following javascript code there is
|
||||
|
|
|
it is an array literal. It is not quite the same as declaring
|
|||||||||||||
|
|
It means an array.
declares the
|
||||
|
|
|
It is shorthand for empty array. Same as new Array(). Also {} is an empty object. Objects are like hashtables in Js so you can use it as a dictionary. |
|||
|
|
|
It creates an empty array.
As an array, you can add items:
|
||||
|
|
|
Many languages have constructs for literals. The [] is an Array literal.
is the same as
Just know that using [] preferred for performance reasons. There are other literals like Object literals
Notice the array literal with data. The [] creates an empty array. |
|||
|
|
|
|||||
|
|
Try to use literals due to performance. You dont write
You just write
You also dont write
You write
And here's a link to a nice blog post about it |
|||
|
|