js array index is string or number? code example
Example: access index of array javascript
let first = fruits[0]
// Apple
let last = fruits[fruits.length - 1]
// Banana
let first = fruits[0]
// Apple
let last = fruits[fruits.length - 1]
// Banana