SunQuest
 
       JavaScript
  Home arrow JavaScript arrow Page 5 - JavaScript arrays: copying, transferring a...
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Dedicated Servers  
Actuate Whitepapers 
VeriSign Whitepapers 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
JAVASCRIPT

JavaScript arrays: copying, transferring and merging
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 3 stars3 stars3 stars3 stars3 stars / 8
    2006-03-14

    Table of Contents:
  • JavaScript arrays: copying, transferring and merging
  • How to copy the elements of one array into another using JavaScript: discussion
  • How to transfer the elements of one array into another using JavaScript
  • How to merge two arrays into a single array using JavaScript
  • How to merge two arrays into a single array using JavaScript: discussion

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
    Iron Speed
     
    ADVERTISEMENT

    AT&T devCentral & BlackBerry(r) Webcast Series: BlackBerry and GPS -Build Location Awareness into your BlackBerry Applications, July 10th -1:00PM EST. Register Today!

    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.

       · Hello, an extension to my previous article on JavaScript arrays is here. Any...
       · How will i copy a javascript multidimensional array?
     

    JAVASCRIPT ARTICLES

    - Using the Style Object for Zebra Tables with...
    - Binary Searching
    - An Improved Approach to Building Zebra Tables
    - Assigning Background Colors Dynamically to Z...
    - Building Zebra Tables with CSS and JavaScript
    - JavaScript: Array Objects
    - A Closer Look at Smart Markers with Yahoo! M...
    - Using Polylines and Smart Markers with Yahoo...
    - Bulleted Menu of Links
    - Creating Click Loggers and Basic Markers wit...
    - Adding Pan Controls to Yahoo! Maps
    - Adding Zoom Controls to Yahoo! Maps
    - Working with Yahoo! Maps
    - Building Image Zooming Controls with the DOM...
    - Working with Multiple Graphics for a Zoom Ap...

    Iron Speed

    Iron Speed





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway