In this video I go over Multidimensional arrays in JavaScript. Multidimensional arrays are basically smaller arrays inside a bigger array. So if you had a Multidimensional array like
var myarray = [ [1,2,3], [4,5,6], [7,8,9] ];
you would access the each individual item by putting 2 square brakets. For example to get value 2 you would do
myarray[0][1]
the [0] will select the first element in the bigger array, which is basically the array [1,2,3].
then the [1] is selecting the element with key 1, which is the number 2
En esta página del sitio puede ver el video en línea JavaScript Tutorial 5 - Multidimensional Arrays de Duración hora minuto segunda en buena calidad , que subió el usuario Struct Feed 12 julio 2017, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 480 veces y le gustó 5 a los espectadores. Disfruta viendo!