Defining JavaScript Arrays Using Literal Notation
(Page 1 of 2 )
In this article, George introduces us to the process of creating arrays in JavaScript using literal notation. Is it really that simple? George attemps to show us how easy it really is.
Literal notation is a form of array declaration introduced in JavaScript 1.2. Like the language version, it's supported by 4th+ generations of browsers.
To declare a literal notation (array), start out with square brackets, then enclose each participating value inside, separated by commas:
var myarray=["Joe", "Bob", "Ken"]
Once declared, a literal notation behaves very much like a normal array, so to call to Joe, you would use:
alert(myarray[0]) //Yo Joe what's up?
At this point, we can all discern at least one merit of literal notation – its compact syntax. Literal notation puts even dense arrays to shame when it comes to quickly declaring an array and populating it with values.
Ok, moving on, let’s explain the kind of values literal notation supports. Apart from the obvious "string" and "numeric" input, you can also use expressions:
var myarray=[x+y, 2, Math.round(z)]
If you can't make up your mind what to enter, undefined values are accepted too, by using a comma (,) in place of the value:
var myarray=[0,,,,5]
In the above, there are actually 6 array values, except the ones in the center are all undefined. This is useful, for example, if you wish to come back later to dynamically fill in these values, or set up your array for future expansion.
Next: Putting It to the Test >>
More JavaScript Articles
More By JavaScript Kit