Click here to Skip to main content
15,891,597 members
Articles / Programming Languages / Javascript
Article

Defining Javascript Arrays using Literal Notation

Rate me:
Please Sign up or sign in to vote.
2.44/5 (6 votes)
21 Mar 20042 min read 55.2K   7  
Learn to define arrays quickly and efficiently in JavaScript, using literal notation.

Introduction

Literal notation is a form of array declaration introduced in JavaScript 1.2 and above. Like the language version, it's supported by 4th+ generations of browsers.

To declare a literal array in JavaScript, start out with square brackets, then enclose each participating value inside, separated by commas:

JavaScript
var myarray=["Joe", "Bob", "Ken"]

Once declared, a literal notation behaves very much like a normal array, so to call Joe, you would use:

JavaScript
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:

JavaScript
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:

JavaScript
var myarray=[0,,,,5]

In the above, there are actually six 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.

Creating multi-dimensional arrays using literal notation

The thing about defining multi-dimensional arrays using the standard syntax is that we're often the ones taken into the next dimension before the process is over. Or is it just me? At any rate, literal notation simplifies things for everyone, as it supports nesting of other literal notation. This makes defining multi-dimensional arrays extremely easy and intuitive. The following example uses literal notation to define an array with three elements, the 1st element being a two dimensional array:

JavaScript
var myarray=[["New York", "LA", "Seattle"], China, Japan]

Yes, it's that easy. By merely using another literal notation as one of the array values, we add a 2nd dimension to that particular element. Let's go to "LA" shall we:

JavaScript
myarray[0][1] //returns "LA"

Just to demonstrate literal notation's versatility in this respect, here's an array with its first element in turn being a three dimensional array:

JavaScript
var myarray=[[[2,4,6]], China, Japan]

Just remember, the more brackets you use, the deeper the hole you dig!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Canada Canada

George is the webmaster of JavaScript Kit (http://www.javascriptkit.com), a comprehensive site featuring tutorials and scripts on JavaScript, DHTML, CSS, and web design. He also mantains the developer's help forum CodingForums.com.


Comments and Discussions

 
-- There are no messages in this forum --