Array Position

Array and For Loops

An array is like a variable, except it contains multiple values, not just one. Arrays are easy to spot, because they're stuffed between square brackets []. An array is defined just like a variable and can contain all the jiggly bits you want - numbers, strings, booleans and possibly long pieces of code that provide a value like functions or more. This is a simple example of an array:

var myArray = [1,true,"tree",4,5,"sticks"];

Subscribe to RSS - Array Position