JavaScript
  Home arrow JavaScript arrow Page 4 - 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  
Mobile Linux 
App Generation ROI 
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
     
     
    ADVERTISEMENT


    JavaScript arrays: copying, transferring and merging - How to merge two arrays into a single array using JavaScript


    (Page 4 of 5 )

    In our previous sections, we managed to copy or transfer the information available in one array to another.  In this section, we shall deal with merging two arrays into a new array.

    Now, let us try to develop a simple script (JavaScript) which merges two arrays into the third array. 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">

    <!--

    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>");

          }

    }

     

    functionButtonMerge_onclick() {

          Show();

    }

    //-->

                </script>

          </head>

          <body>

          <form id="form1">

                      <input type="button" value="Merge and Show" id="ButtonMerge" name="ButtonMerge" onclick="return ButtonMerge_onclick()">

                </form>

          </body>

    </html>

    When the above code is executed we get the following output:

    Merged array
    ----------------
    Jag
    Chat
    Win
    Dhan
    aaa
    bbb
    ccc
    ddd

    The explanation for the above code is given in the next section.

    More JavaScript Articles
    More By Jagadish Chaterjee


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

    JAVASCRIPT ARTICLES

    - Using Click Interceptions with a Database-Dr...
    - Using JavaScript Click Interceptions in an I...
    - Using Click Interceptions with JavaScript
    - QuickSort in Action
    - Quicksort
    - Using Mod_Security to Protect Your Server
    - Detecting and Countering Server Intrusions
    - Securing Your Web Server
    - Building a Secure Web Server
    - Protecting the Server
    - Book Review: Learning the Yahoo! User Interf...
    - Dynamically Generate a Selection List in a R...
    - Intergrate DWR into Your Java Web Application
    - Detect Browser Compatibility with the Reques...
    - Using the EXT JS Date Picker Widget






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway
    Stay green...Green IT