Answered
Given an array like this:
["one", "two", "three", "four", "five"]
How do I get the first string/item in that array?
I'm coding in JavaScript.
Access the array at the 0
index, which is the first element in the array:
let array = ["one", "two", "three", "four", "five"]
array[0] // "one"