how to get the second 10 element in an array js code example
Example: get second from array javascript
array = ["Bob", "James", "John"]
console.log(array[1]) // Prints 2nd
array = ["Bob", "James", "John"]
console.log(array[1]) // Prints 2nd