JavaScript
  Home arrow JavaScript arrow Page 2 - 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 
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 / 10
    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 copy the elements of one array into another using JavaScript: discussion


    (Page 2 of 5 )

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

    The function “Show” is defined as follows:

    functionShow()

    {

          var SimpleString = "abc;def;ghi;jkl;mno;qrs";

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

          var subArray = myArray.slice(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>");

          }

    }

    In the above code fragment, I worked with a sample string as follows:

          var SimpleString = "abc;def;ghi;jkl;mno;qrs";

    From the above statement, we can easily determine that the “separator” for the elements would be “;” or semi-colon (as explained in my second article in this series).  Proceeding further we have the following:

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

    The above statement makes the string split into several elements, based on the separator “;” (semi-colon).  Once the splitting is completed, it creates an array of those elements and assigns the same to the variable “myArray.” Continuing on, we have the following:

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

    The above statement creates a new array with only three elements (copied from  the 0th location or index) from the main array “myArray” and finally assigns the same to “subArray.”

    We use the following loop to display all the elements (as explained in my first article):

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

          {

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

          }

    I also displayed the elements available in the first array using the following loop:

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

          {

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

          }

    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?
       · Great post, definitely wish JavaScript had a few more powerful JavaScript array...
     

    JAVASCRIPT ARTICLES

    - Validating Digits and Dates with jQuery`s Va...
    - Validating Ranges, Emails, and URLs with jQu...
    - More Uses for the jQuery Tooltip Plug-in`s b...
    - Building Image-Based Tooltips with the jQuer...
    - Using the jQuery Tooltip Plug-in`s bodyHandl...
    - Using Rangelength, Min and Max with the Vali...
    - Using Minlength and Maxlength with the Valid...
    - Modifying Tooltip Coordinates with the jQuer...
    - Applying a Fade Out Effect with the jQuery T...
    - Tracking Mouse Movements with the jQuery Too...
    - Checking Online Forms with the Validator jQu...
    - Nested JavaScript Functions as Objects
    - The jQuery Tooltip Plug-in
    - Active Client Pages at the Server
    - ACP Tab Web Page







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 Hosted by Hostway
    Stay green...Green IT