Array
Each item in an array has a number attached to it, called a numeric index, that allows you to access it. In JavaScript, arrays start at index zero and can be manipulated with various methods .
Arrays in JavaScript look like this:
js
// Arrays in JavaScript can hold different types of data
const
myArray =
[
1
,
2
,
3
,
4
]
;
const
barbieDollNamesArray =
[
"Barbie"
,
"Ken"
,
"Midge"
,
"Allan"
,
"Skipper"
]
;
// Array indexes starts at 0.
console.
log
(
myArray[
0
]
)
;
// output: 1
console.
log
(
barbieDollNamesArray[
2
]
)
;
// output: "Midge"
See also
-
JavaScript
Array
on datarist