how to choose 1 element from 2 arrays in javascript 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