Home arrow JavaScript arrow An in depth discussion of JavaScript Arrays
JAVASCRIPT

An in depth discussion of JavaScript Arrays


This series of articles mainly concentrates on working with JavaScript arrays. We shall start with the basics of JavaScript arrays and finally conclude with complex object based arrays in JavaScript. You can reuse these scripts to inject into server side controls easily (especially in .NET and Java).

Author Info:
By: Jagadish Chaterjee
Rating: 3 stars3 stars3 stars3 stars3 stars / 9
February 28, 2006
TABLE OF CONTENTS:
  1. · An in depth discussion of JavaScript Arrays
  2. · Working with single dimensional arrays: discussion
  3. · Working with two dimensional arrays
  4. · Working with two dimensional arrays: discussion
  5. · Another way to work with two dimensional arrays

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
An in depth discussion of JavaScript Arrays
(Page 1 of 5 )

All of the examples in this series can be directly tested, by simply copying and pasting the entire code (of each section) into any text file with the extension .HTM and opening it by using a browser.

Working with single dimensional arrays

Everyone knows that an array is nothing but a set of values (or data) stored sequentially in memory.  Different languages have different syntaxes for declaring and using arrays.  In this series, we mainly concentrate on the JavaScript language to work with arrays.

Now, let us try to develop a simple script (JavaScript) to declare and work with single dimensional arrays.  Have a look at the following code:

<html>
      <head>
           <meta name=vs_targetSchema 
content="http://schemas.microsoft.com/intellisense/ie5">
<script id="clientEventHandlersJS" language="javascript">
<!--
function Show()
{
      var myArray = new Array();
      myArray[0] = "Jag";
      myArray[1] = "Chat";
      myArray[2] = "Win";
      myArray[3] = "Dhan";
      for (var i = 0; i < myArray.length; i++) 
      {
            document.write(myArray[i] + "<BR>");
      }
}

function
Button1_onclick() {
      Show();
}
//-->
            </script>
      </head>
      <body>
      <form id="form1">
                  <input type="button" value="Show" id="Button1" 
name="Button1" onclick="return Button1_onclick()">
            </form>
      </body>
</html>

Actually, within the above code, the “meta” tag is not necessary.  As I developed the above code using Visual Studio.NET 2003 Enterprise Architect, it was automatically added to provide its full-featured mechanisms.  The explanation for the above code is given in the next section.


blog comments powered by Disqus
JAVASCRIPT ARTICLES

- More Top jQuery Plugins for Menus
- Top jQuery Tutorials for Beginners
- New UI Framework and SDK for JavaScript Rele...
- JavaScript OpenPGP Tool, Node.js 0.6.3 Avail...
- Yahoo Releases Cocktails Language and Develo...
- Customizing jQuery Slideshows: Dynamic Contr...
- Customizing jQuery Slideshows: the animate()...
- Customizing jQuery Slideshows: slideUp() and...
- Customizing jQuery Slideshows: hide() and sh...
- Web Workers: Performing Calculations in Para...
- More Top JavaScript Frameworks and Libraries
- More Dynamic jQuery Styling Techniques
- The Top JavaScript Libraries
- The Top JavaScript Frameworks
- Dynamic jQuery Styling

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 6 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials