JavaScript
  Home arrow JavaScript arrow Page 3 - 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 
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: 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 - Pop() and Lock


    (Page 3 of 5 )

    If you have read any of my other articles on methods and functions for other languages, then you will know that JavaScript shares many of them. For instance, I just wrote an article on Perl that uses the pop(), push(), shift(), unshift(), and splice methods (to name a few), which have the same use in Perl as they do in JavaScript.

    As our table indicated earlier, we use pop() when we want to remove and return the right most (or end) element in an array. Here is the code:


    <html>

    <body>

    <script type="text/javascript">

    var bboys = new Array(3);

    bboys[0] = "Greg";

    bboys[1] = "Bobby";

    bboys[2] = "Peter";

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

    document.write(bboys.pop() + "<br />");

    document.write(bboys);

    </script>

    </body>

    </html>

    This code is pretty self-explanatory. First we assign the bboys array some values. Then we write out the values to the screen, and remove the end element from the array using pop(), printing out the removed element. Finally, we print out the values of bboys once more to show that “Peter” has been removed.

    Here is the result:

      Greg,Bobby,Peter
      Peter
      Greg,Bobby

    Note that we could keep popping the array until it was empty:


    <html>

    <body>

    <script type="text/javascript">

    var bboys = new Array(3);

    bboys[0] = "Greg";

    bboys[1] = "Bobby";

    bboys[2] = "Peter";

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

    document.write(bboys.pop() + "<br />");

    document.write(bboys.pop() + "<br />");

    document.write(bboys.pop() + "<br />");

    document.write(bboys);

    </script>

    </body>

    </html>

    Each time we pop() the array, the last element gets removed until there are no values left in the array. Here is how it prints out (note that the final document.write prints nothing, as nothing remains to be printed):

      Greg,Bobby,Peter
      Peter
      Bobby
      Greg

    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 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 4 hosted by Hostway
    Stay green...Green IT