JavaScript
  Home arrow JavaScript arrow Page 4 - JavaScript: Array Objects
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: Array Objects
By: James Payne
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 5
    2008-06-02

    Table of Contents:
  • JavaScript: Array Objects
  • Join() Hands
  • Pop() and Lock
  • Using Pop() to Assign a Value to a Variable
  • Put It In Reverse()

  • 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: Array Objects - Using Pop() to Assign a Value to a Variable


    (Page 4 of 5 )

    You can also use the pop() function to assign a value to a variable, like so:


    <html>

    <body>

    <script type="text/javascript">

    var bboys = new Array(3);

    bboys[0] = "Greg";

    bboys[1] = "Bobby";

    bboys[2] = "Peter";

    yeah=bboys.pop();

    document.write(yeah);

    </script>

    </body>

    </html>

    Here we have the result:

      Peter

    Push() Damn You Push!

    Just as we use pop() to remove an element, we use push() to add one (or more) elements to the right side (or end) of an array and then print out the modified array length. Here is an example in which a Brady nightmare comes true and Michael Jackson joins the family:


    <html>

    <body>

    <script type="text/javascript">

    var bboys = new Array(3);

    bboys[0] = "Greg";

    bboys[1] = "Bobby";

    bboys[2] = "Peter";

    document.write("Behold the Brady Boys: " + "<br />");

    document.write(bboys.push("Michael Jackson") + "<br />");

    document.write(bboys);

    </script>

    </body>

    </html>

    This prints out:

      Behold the Brady Boys:
      4
      Greg,Bobby,Peter,Michael Jackson

    Of course, we can also add more than one element to the array, as we do in this nightmarish scenario:


    <html>

    <body>

    <script type="text/javascript">

    var bboys = new Array(3);

    bboys[0] = "Greg";

    bboys[1] = "Bobby";

    bboys[2] = "Peter";

    document.write("Behold the Brady Boys: " + "<br />");

    document.write(bboys.push("Michael Jackson","Tito Jackson","Fred Savage") + "<br />");

    document.write(bboys);

    </script>

    </body>

    </html>

    This changes the length of the array, and prints out:

      Behold the Brady Boys:
      6
      Greg,Bobby,Peter,Michael Jackson,Tito Jackson,Fred Savage

    Note that the 6 that gets printed out is the new size of our array.

    More JavaScript Articles
    More By James Payne


       · I don't usually comment on articles I read but I had to stop in and say thanks for a...
       · Hey thanks, glad you liked it. Another in the series should be coming out soon!
     

    JAVASCRIPT ARTICLES

    - Using jQuery to Preload Images with CSS and ...
    - Using Client-Side Scripting to Preload Image...
    - Removing Non-Semantic Markup when Preloading...
    - Using the Display CSS Property to Preload Im...
    - Preloading Images with CSS and JavaScript
    - Scaling and Moving Web Page Elements with th...
    - Fading, Hiding and Sliding HTML Elements wit...
    - Toggling CSS Properties with the GX JavaScri...
    - Cancel, Queue and Pause Animations with the ...
    - Producing Elastic Effects with the GX JavaSc...
    - Moving Divs Diagonally with the GX JavaScrip...
    - Moving Elements Vertically and Horizontally ...
    - Making Bouncing Effects in Parallel with the...
    - Creating Bouncing Effects with the GX JavaSc...
    - Manipulating Background Colors with the GX J...







    © 2003-2010 by Developer Shed. All rights reserved. DS Cluster 6 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek