SunQuest
 
       JavaScript
  Home arrow JavaScript arrow Page 5 - JavaScript Arrays: Pushing, Popping and Sh...
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 
VeriSign Whitepapers 
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: Pushing, Popping and Shifting
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 3 stars3 stars3 stars3 stars3 stars / 12
    2006-03-21

    Table of Contents:
  • JavaScript Arrays: Pushing, Popping and Shifting
  • How to append an element to an array using JavaScript: discussion
  • How to pop (or delete at end) an element from an array using JavaScript
  • How to delete an element at the top from an array using JavaScript
  • How to add an element to the top of an array using JavaScript

  • 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
     
    Iron Speed
     
    ADVERTISEMENT

    Free Web 2.0 Code Generator! Generate data entry and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!

    JavaScript Arrays: Pushing, Popping and Shifting - How to add an element to the top of an array using JavaScript


    (Page 5 of 5 )

    In this section I focus on “un-shifting” (also called “adding” at the beginning) an element to an array.

    Now, let us try to develop a simple script (JavaScript) which adds (or un-shifts) a single element at the beginning of an 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">
    <!--
    function Show()
    {
          var myArray = new Array();
          myArray[0] = "Jag";
          myArray[1] = "Chat";
          myArray[2] = "Win";
          myArray[3] = "Dhan";
          document.write("Before un-shifting<br>-------------<br>");
          for (var i = 0; i < myArray.length; i++) 
          {
                document.write(myArray[i] + "<BR>");
          }
          myArray.unshift("aaa");
          document.write("<br>After un-shifting<br>-------------<br>");
          for (var i = 0; i < myArray.length; i++) 
          {
                document.write(myArray[i] + "<BR>");
          }
    }

    function Button1_onclick() {
          Show();
    }
    //-->
                </script>
          </head>
          <body>
          <form  id="form1">
                      <input  type="button"  value="Show"  id="Button1"  name="Button1"  onclick="return Button1_onclick()">
                </form>
          </body>
    </html>

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

    Before un-shifting
    -------------
    Jag
    Chat
    Win
    Dhan

    After un-shifting
    -------------
    aaa
    Jag
    Chat
    Win
    Dhan

    The above code is very similar to the code available in the previous section with only the following change:

          myArray.unshift(“aaa”);

    Earlier, in my first section, I used the “push” method.  When we apply “push” with a parameter, the parameter (or element) gets added to the array at the end (or gets appended).  The new method “unshift” is very similar to the method “push” except that it adds at the end.  Apart from this difference, the rest of the code is quite similar.

    Summary

    By now, I hope you are very clear about all the ways of working with arrays.  I used very simple examples, so that the clarity of the subject would be maintained with simplicity.  You can practice further by developing extended simple applications. 

    You can have a few textboxes and lists on a web page and continuously add/delete/clear elements in an array dynamically with a few buttons, using all of the methods I described in this series.  I bet that it would really get you started with mastering arrays. 

    Without mastering arrays in JavaScript, you would not be able to design and develop stunning web pages (unless you use design tools).  You can also develop several types of menus using JavaScript with the help of arrays, HTML and CSS together.  You can expect my articles on those subjects as well in the near future.

    I shall start contributing again, on working with objects in JavaScript and finally implement arrays with objects (probably in a new series).  So, get back to this site frequently or sign up for a newsletter.

    Any comments, suggestions, ideas, improvements, bugs, errors, feedback etc. are highly appreciated at jag_chat@yahoo.com.


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

       · Hello. This is another extension to "Javascript Arrays" discussion. You are free...
     

    JAVASCRIPT ARTICLES

    - 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
    - Adding Zoom Controls to Yahoo! Maps
    - Working with Yahoo! Maps
    - Building Image Zooming Controls with the DOM...
    - Working with Multiple Graphics for a Zoom Ap...

    Iron Speed

    Iron Speed





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