“Elemen Akses JavaScript dari suatu array” Kode Jawaban

Elemen Akses JavaScript dari suatu array

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

Elemen Akses JavaScript dari suatu array

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

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

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

Jawaban yang mirip dengan “Elemen Akses JavaScript dari suatu array”

Pertanyaan yang mirip dengan “Elemen Akses JavaScript dari suatu array”

Lebih banyak jawaban terkait untuk “Elemen Akses JavaScript dari suatu array” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya