“Javascript Access Elements of a Matriz” Respostas de código

Javascript Access Elements of a Matriz

let x = [
['Jack', 24],
['Sara', 23], 
['Peter', 24]
];

// access the first item 
console.log(x[0]); // ["Jack", 24]

// access the first item of the first inner array
console.log(x[0][0]); // Jack

// access the second item of the third inner array
console.log(x[2][1]); // 24
SAMER SAEID

Javascript Access Elements of a Matriz

const myArray = ['h', 'e', 'l', 'l', 'o'];

// first element
console.log(myArray[0]);  // "h"

// second element
console.log(myArray[1]); // "e"
SAMER SAEID

Respostas semelhantes a “Javascript Access Elements of a Matriz”

Perguntas semelhantes a “Javascript Access Elements of a Matriz”

Mais respostas relacionadas para “Javascript Access Elements of a Matriz” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código