Array example

Array is an object that hold the data of similar type. The length of an array is decided when an array is created.

Array example

Array is an object that hold the data of similar type. The length of an array is decided when an array is created.

Array example

Array example

     

Array is an object that hold the data of similar type. The length of an array is decided when an array is created. Length in array cannot be changed once array is declared. Each element in an array is accessed by numerical index.

In this Tutorial we want to describe you a code that makes you easy to understand an Array example, For this we are using Java Scripting language. The code show you that on loading a page, a function display ( ) is invoked that include an array variable used to instantiate an array object. This array object hold various element. The for loop execute and return you true till the variable i is less than the array length. Finally the document. write print the element in an array object . array example.html


<html>
  <head>
  <title>Array Declaration</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  <style>

  </style>
  <script>
  
  function display(){
  var array = new Array();
  array[0"Ajay";
  array[1"Bhanu";
  array[2"Komal";
  array[3"Rakesh";
  array[4"Santosh"
  array[5"Tanuj"
  document.write("<b>Element of the array are</b><br>");
  document.write("____________________<br>");
  
  for(i=0;i<array.length;i++){
  document.write("Element "+i+" : "+array[i]+"<br>");
  }
  }
  </script>
  </head>
  
  <body onload="display();">
  
  </body>
</html>
 

Output

Download code