Tips n Tracks

  • Increase font size
  • Default font size
  • Decrease font size
  • default color
  • black color

Reference

Sample image

Microsoft .NET Framework Get Details.

Sample image

Microsoft .NET Framework Get Details.

Reference

Sample image Microsoft .NET Framework Get Details.
Sample image

Microsoft .NET Framework Get Details.


Archive for February, 2011

Learning JavaScript tutorial – JavaScript while(loop), do…while(Loop) statement


Learning JavaScript tutorial – JavaScript while(loop), do…while(Loop) statement

JavaScript while statement

In JavaScript, while loop statement allows us to perform some action on a piece of code till the condition is satisfied or true. The JavaScript while loop statement check condition at the start of the execution of the loop. If the expression evaluates to true, the while loop statement execute the body of the loop; means the piece of code between the curly brackets.

JavaScript while statement Syntax

while(conditional expression is true)
{
  statement block executed while conditional expression
  evaluates to true(satisfied).
}

Here, If the resulting value of conditional expression is true or it evaluated to true, while loop statement block enclosed within the Curly braces – {} is executed.

JavaScript While loop Statement Flowchart
do while loop statement flowchart


Read the rest of this entry »