JavaScript
  Home arrow JavaScript arrow Page 4 - Introducing JavaScript Functions and Loops
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

Introducing JavaScript Functions and Loops
By: James Payne
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 7
    2007-11-12

    Table of Contents:
  • Introducing JavaScript Functions and Loops
  • Putting the Fun in Your Functions
  • Loops
  • While Loop

  • 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


    Introducing JavaScript Functions and Loops - While Loop


    (Page 4 of 4 )

    While loops are used to execute code while a certain criteria is true. In the example below, I have recruited the Count from Sesame Street to help me tabulate how many people are reading this tutorial.

    <html>

    <body>


    <script type="text/javascript">

    i = 0

    while (i <= 5)

    {

    document.write("The Count says: " + i + " Ah Ah Ah")

    document.write("<br />")

    i++

    }

    </script>


    <p>There are 5 nerds reading this tutorial</p>

    <p><b>AH AH AH!</b></p>

    </body>

    </html>

    This script will print the following to the monitor:

      The Count says: 0 Ah Ah Ah
      The Count says: 1 Ah Ah Ah
      The Count says: 2 Ah Ah Ah
      The Count says: 3 Ah Ah Ah
      The Count says: 4 Ah Ah Ah
      The Count says: 5 Ah Ah Ah

      There are 5 nerds reading this tutorial

      AH AH AH!

    The script works by giving our counter variable the value of 0. It then says to execute the code while the value of i is equal to or less than 5. The program then runs through the loop, printing our text and incrementing the value by one on each pass through the loop until the value reaches five. Then it exits the loop and goes on to print the lines: There are 5 nerds reading this tutorial and AH AH AH!

    Well, that's all the time we have for this episode. In the next tutorial we will complete our discussion of Loops, covering the Do While Loop and learning how to break out of Loops, and possibly cover the For...In statement.

    Till then...


    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.

       · Thanks for dropping by for my discussion on Javascript functions and loops. Here we...
     

    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