store data in array javascript code example

Example 1: javascript array

//create an array like so:
var colors = ["red","blue","green"];

//you can loop through an array like this:
for (var i = 0; i < colors.length; i++) {
    console.log(colors[i]);
}

Example 2: javascript get array value

var array = []
array[0] = "hi"
array[1] = "dude"
var done = false
while (done == false){
var valueToFind = "hi";
  var rounds = array.length;
  if (rounds < 0){
  return false
  }
  if (array[rounds] == valueToFind){
  done = true
    return rounds
  }
  rounds = rounds - 1
}