Home arrow JavaScript arrow Page 3 - JavaScript Arrays: Pushing, Popping and Shifting
JAVASCRIPT

JavaScript Arrays: Pushing, Popping and Shifting


This series of articles mainly concentrates on working with JavaScript arrays. This is the fourth article in the series and mainly concentrates on working with multiple arrays effectively. You can reuse these scripts to inject into server side controls easily (especially in .NET and Java).

Author Info:
By: Jagadish Chaterjee
Rating: 4 stars4 stars4 stars4 stars4 stars / 21
March 21, 2006
TABLE OF CONTENTS:
  1. · JavaScript Arrays: Pushing, Popping and Shifting
  2. · How to append an element to an array using JavaScript: discussion
  3. · How to pop (or delete at end) an element from an array using JavaScript
  4. · How to delete an element at the top from an array using JavaScript
  5. · How to add an element to the top of an array using JavaScript

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
JavaScript Arrays: Pushing, Popping and Shifting - How to pop (or delete at end) an element from an array using JavaScript
(Page 3 of 5 )

In this section I focus on “popping” (also called “deleting” at the end) an element from an array.

Now, let us try to develop a simple script (JavaScript) which deletes (or pops) a single element at the end 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 deleting<br>-------------<br>");
      for (var i = 0; i < myArray.length; i++) 
      {
            document.write(myArray[i] + "<BR>");
      }
      myArray.pop();
      document.write("<br>After deleting<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 we get the following output:

Before deleting
-------------
Jag
Chat
Win
Dhan

After deleting
-------------
Jag
Chat
Win

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

      myArray.pop();

Earlier, in my previous example (in the first section), I used the “push” method.  The “push” method accepts a parameter as an element to add.  Coming to the “pop” method, it doesn’t accept any parameter to delete.  That means when you issue “pop,” the last element (or the latest element added at the end of the array) gets deleted from the array automatically.  Apart from this difference, the rest of the code is quite similar.


blog comments powered by Disqus
JAVASCRIPT ARTICLES

- More Top jQuery Tutorials for Beginners
- More Top jQuery Plugins for Menus
- Top jQuery Tutorials for Beginners
- New UI Framework and SDK for JavaScript Rele...
- JavaScript OpenPGP Tool, Node.js 0.6.3 Avail...
- Yahoo Releases Cocktails Language and Develo...
- Customizing jQuery Slideshows: Dynamic Contr...
- Customizing jQuery Slideshows: the animate()...
- Customizing jQuery Slideshows: slideUp() and...
- Customizing jQuery Slideshows: hide() and sh...
- Web Workers: Performing Calculations in Para...
- More Top JavaScript Frameworks and Libraries
- More Dynamic jQuery Styling Techniques
- The Top JavaScript Libraries
- The Top JavaScript Frameworks

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 1 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials