Java Script, For loop Example, Array

<html>
<head>
<title>JavaScript Example for  For Loop</title>
<script type="text/javascript">
var myarray=new Array(5);
myarray[0]="Sonam";
myarray[1]="Jamtsho";
myarray[2]="Karma";
myarray[3]="Phuntsho";
myarray[4]="Tshering";

var i;
for(i=0;i<myarray.length;i++)
  {
   document.write("array["+i+"]= "+myarray[i]);
   document.write("</br>");
  }
</script>
</head>
<body></body>
</html>

Comments

Popular posts from this blog

(Solved) (Fixed )MariaDB Unmet Dependencies on Ubuntu 20.04.

Solution to Moodle Error: Coding error detected, it must be fixed by a programmer: Failed to unserialise data from file. Either failed to read, or failed to write.

ACTION_FAILED:OU_INVALID: Solution for GoogleApps bulk user upload issue, username@domainname.com:ACTION_FAILED:OU_INVALID. This error is because you have not specified the Org Unit Path properly.