SunQuest
 
       JavaScript
  Home arrow JavaScript arrow Page 3 - 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 
Moblin 
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

    Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here

    JavaScript arrays: copying, transferring and merging - How to transfer the elements of one array into another using JavaScript


    (Page 3 of 5 )

    In this section I focus on transferring elements from one array to another.  What is the difference between copying and transferring?  The process of copying is “duplicating,” whereas the process of transferring is “moving.”  “Moving” of elements means copying to another array and deleting from the original!

    Now, let us try to develop a simple script (JavaScript) which transfers some of the elements present in the first array into the second.  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 SimpleString = "abc;def;ghi;jkl;mno;qrs";

          var myArray = SimpleString.split(";");

          var subArray = myArray.splice(0,3);

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

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

          {

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

          }

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

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

          {

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

          }

    }

     

    functionButton1_onclick() {

          Show();

    }

    //-->

                </script>

          </head>

          <body>

          <form id="form1">

                      <input type="button" value="Transfer and Show" id="Button1" name="Button1" onclick="return Button1_onclick()">

                </form>

          </body>

    </html>

    When the above code is executed, the following output is generated.

    first array
    ---------
    jkl
    mno
    qrs

    second array
    ---------
    abc
    def
    ghi

    Now you can observe the difference between the two outputs (compare the above output with the one in the first section).  The elements from the first array have been removed and copied into the second array (which is what we call this “transferring” elements).

    The only change I made in the above code is the following line:

          var subArray = myArray.splice(0,3);

    In the previous section, I used “slice” and now I am using “splice”.  The “slice” makes you to copy the elements (without deleting from the source) whereas the “splice” makes you to transfer the elements (while deleting from the source).

    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

    - Detect Browser Compatibility with the Reques...
    - Using the EXT JS Date Picker Widget
    - Ajax Hack for Entering Information Without R...
    - EXT JS 2.1 Overview
    - 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







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