const numbers = [1, 2, 3, 4]; // Create an array of numbers. · const first = numbers[0]; // Arrays are 0 based in JavaScript. · const second = numbers["1"]; // ...
確定! 回上一頁