In this lesson we learn about simple arrays and about using the keyword this.
Main Site TopicsYou can think of an array as a set of boxes containing
information. So we can say:
MyNumbers=new Array
("1","2","3","4","5","6","7","8","9","0",".");
On this page:Defining the ArrayLength of the ArrayFind Element at PositionDifferent Ways of Making an ArrayDefining the Array
In the HEAD of the document I define my array:
Length of the Array
With this array we can do some things.
W...
(more)