Home arrow JavaScript arrow Page 5 - JavaScript arrays: copying, transferring and merging
JAVASCRIPT

JavaScript arrays: copying, transferring and merging


This series of articles mainly concentrates on working with JavaScript arrays. This is the third article in the series. It mainly concentrates on working with multiple arrays effectively. 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 / 14
March 14, 2006
TABLE OF CONTENTS:
  1. · JavaScript arrays: copying, transferring and merging
  2. · How to copy the elements of one array into another using JavaScript: discussion
  3. · How to transfer the elements of one array into another using JavaScript
  4. · How to merge two arrays into a single array using JavaScript
  5. · How to merge two arrays into a single array using JavaScript: discussion

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
JavaScript arrays: copying, transferring and merging - How to merge two arrays into a single array using JavaScript: discussion
(Page 5 of 5 )

Within the code in the previous section, I mainly created a simple button (which is identified as “ButtonMerge”).  The button is defined with an “onclick” event which calls a JavaScript function, “ButtonMerge_onclick.”  The same function simply calls another JavaScript function named “Show.”

The function “Show” is defined as follows:

functionShow()

{

      var myArray1 = new Array();

      myArray1[0] = "Jag";

      myArray1[1] = "Chat";

      myArray1[2] = "Win";

      myArray1[3] = "Dhan";

     

      var myArray2 = new Array();

      myArray2[0] = "aaa";

      myArray2[1] = "bbb";

      myArray2[2] = "ccc";

      myArray2[3] = "ddd";

     

      var myArray3 = myArray1.concat(myArray2);

      document.write("Merged array<br>----------------<br>");

      for (var i = 0; i < myArray3.length; i++)

      {

            document.write(myArray3[i] + "<BR>");

      }

}

Let us go through the above code part by part.  Let us consider the first part as follows:

      var myArray1 = new Array();

      myArray1[0] = "Jag";

      myArray1[1] = "Chat";

      myArray1[2] = "Win";

      myArray1[3] = "Dhan";

The above part creates a new array named “myArray1” and adds four elements to the same array. These elements are “Jag,””Chat,””Win” and ”Dhan.”  The following is very similar to the above fragment except that we named the second array “myArray2.”

      var myArray2 = new Array();

      myArray2[0] = "aaa";

      myArray2[1] = "bbb";

      myArray2[2] = "ccc";

      myArray2[3] = "ddd";

Further proceeding we have the following:

      var myArray3 = myArray1.concat(myArray2);

The above statement creates a new array with all the elements from both “myArray1” and “myArray2” and finally assigns the new array (a merged array) to the variable “myArray3.”  We display the merged array using the following (as explained in the first article):

      document.write("Merged array<br>----------------<br>");

      for (var i = 0; i < myArray3.length; i++)

      {

            document.write(myArray3[i] + "<BR>");

      }

While the process of merging is going on, neither of the two arrays (“myArray1” and “myArray2”) is modified.  If you want to view both arrays, you can add the following code at the end of the function:

      document.write("First array after merging<br>----------------<br>");

      for (var i = 0; i < myArray1.length; i++)

      {

            document.write(myArray1[i] + "<BR>");

      }

      document.write("Second array after merging <br>----------------<br>");

      for (var i = 0; i < myArray2.length; i++)

      {

            document.write(myArray2[i] + "<BR>");

      }

That should make you understand that “myArray1” and “myArray2” are constant (not modified) and only “myArray3” gets created (or merged).

Any comments, suggestions, ideas, improvements, bugs, errors, feedback etc. are highly appreciated at jag_chat@yahoo.com.


DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

blog comments powered by Disqus
JAVASCRIPT ARTICLES

- More Top jQuery Tutorials for Beginners
- 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

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 5 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials