Thursday, June 1, 2017

21st class at 17/05.2017

Today is uki 21st class. 
Today is 1 month anniversary in uki.life. I got an award is best blogger writer. So I feel very happiness. Then I studies Javascript.  

While loop

Syntax
while (condition) {

code block to be executed

}

Eg: 1)

while (a < 5) {
    text += "number is " + a;
    a++;
}

output:

number 1

number2

number3

number4

Do/While Loop

Syntax

do {
    code block to be executed
}
while (condition); 

Eg: 2)

do {
    text += "number " + a;
    a++;
}
while (a< 5);  

output:

number 1

number2

number3

number4

more example coding

1) i=1;
a=1;
while(a<=10)
{
    i=i*3;
  document.write("The number is "+"   3"+"<sup>"+a+"</sup>"+"  =  "+i+"<br>" );
a++;
}
2)i=0;
var text=""
do{
  text+= "<br>The number is "+i;
  i++;
}
while(i<10);
  document.getElementById("demo").innerHTML=text;
Thankyou

meet tommorrow bye..........

No comments:

Post a Comment