Actionscript Course

While loops

The while loops are used to repeat a block of code as long as a specified condition is true.
The while loops have the following syntax:

while (condition) {
  // codeBlock
}
- If the condition is true, the code within curly brackets is executed, then the script checks again the condition, and if it is still true, "codeBlock" is executed again. This process continues until condition becomes false, or you use a "break" statement to end the loop.

Example:
var total:int = 1;

// define a variable (counter) to control the executions number
var i:int=0;

// create a while loop
while(i<4)
{
  total *= 2;
  trace(total);
  i++;        // adds 1 to counter (i)
}

// In Output displays:  2 4 8 16
ActionScript first evaluates the condition (i<4), becouse "i=0", this condition returns true; so, ActionScript executes the loop body.
The loop body sets "total" to its own value multiplied by two, then "trace(total)" output its value, and "i++" adds one to "i" (the counter).
Then, ActionScript evaluates again the condition, and if it is true (now "i" is 1) executes the loop body. This process continues until the value of "i" variable is 4, which is not less than 4, so the condition is false, and the loop ends.
We got the following output:   2 4 8 16

Do While

The do while loop is a variant of the "while()" loop. The difference is that "do while" loop first executes the block of code, and then evaluates the condition.
The syntax is:
do {
  // codeBlock
} while (condition);
Example:
var total:int = 1;

// define a variable (counter) to control the executions number
var i:int=1;

// create a do..while loop
do
{
  total *= 2;
  trace('total is '+ total);
  i++;        // adds 1 to counter (i)
} while(i<0);

// In Output displays:  total is 2
This code displays in Output panel:   total is 2
As you can notice, although the condition is false (i<0 , but i=1), the code within curly brackets is still executed once.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag renders as emphasized text, displaying the text oblique?
<strong> <pre> <em>
<p>Web development courses: <em>CoursesWeb.net</em></p>
Which CSS property defines the space between the element border and its content?
margin padding position
h3 {
  padding: 2px 0.2em;
}
Click on the method which returns the first element that matches a specified group of selectors.
getElementsByName() querySelector() querySelectorAll()
// gets first Div with class="cls", and shows its content
var elm = document.querySelector("div.cls");
alert(elm.innerHTML);
Indicate the PHP variable that contains data from a form sent with method="post".
$_SESSION $_GET $_POST
if(isset($_POST["field"])) {
  echo $_POST["field"];
}
While and Do While

Last accessed pages

  1. The Fifth Agreement (18722)
  2. Display image file in Canvas, Check its type and size before Upload (3440)
  3. Get and Modify content of an Iframe (32090)
  4. SHA256 Encrypt hash in JavaScript (31197)
  5. CSS Border (5972)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (234)
  2. Read Excel file data in PHP - PhpExcelReader (83)
  3. PHP Unzipper - Extract Zip, Rar Archives (72)
  4. The Four Agreements (69)
  5. The Mastery of Love (59)