Can someone please help me. I have been writing javascript and jquery for over a year now, but there is one topic I have never run across. ARRAYS. can someone give me a basic idea on how arrays in javascript work and how I can use them. I am trying to store an array of arrays that contain strings. Like this
- Base Array
- [0] Sub Array
- [0] 'Hello World'
- [1] 'Hey What's Up World'
- [1] Sub Array
- [0] 'Hello America'
- [1] 'Hello UK'
- [0] Sub Array
And I might also have some numeric values in there too. So, how can I go about this task.