Sesion 10
JavaScript
Intermediate


Concepts

Arrays

An array is a colection of datas

Example:
let myArray = ["data1", "data2",... "datan" ]*
they have an index, started in 0, for select the "data2" of the previous array we have to set myArray[1], another function is myArray.length //return the array length
another function it's includes, myArray.includes("data1") = returnABoleean;


Admin your array