All posts by Aruna V

For Loop Statement

For loop can be used to execute for the specified number of times

Basic Syntax :

for(init count; total count; count increment){
  //code can be execute each iteration
}

init count  : Initialize the variable and assign loop count the count value,

total Count : evaluate the total count, if the count is lesser than the value, the loop iteration

count increment :  Increment the count value, when loop iteration

 

 

 

HTML Tables

Html tables to arrange data into rows and columns in web pages

Examples

Name Email Phone
KaniMozhi kani@gmail.com 9446534534
Janarthanan jana@gmail.com 9423534534
Manikandan mani@gmail.com 9446534534
Name Email Phone

Read More