Arrays
We'll cover the following...
We’ve spent a lot of time with strings. That makes sense, because we want our programs to interact with human beings, and human beings tend to like words and sentences. We can logically think about strings as a sequence of characters. However, strings are just one kind of a sequence of values. What if we want a sequence of numbers, or people, or something else?
In this lesson, we’re going to ...