Back to Lesson # 9 - Arrays of Data | Back to Main Menu | # 9 Assignment |
1. It is best to use an array for:
3. Finish this statement to create an array called myList to hold 250 items: var myList = ...
5. The most natural construct to use in processing an array of data is the:
6. What do these lines of code do, when taken as a group?
var temp = myList[2]; myList[2] = myList[3]; myList[3] = temp;
7. To find out if a certain piece of data (the target) is stored somewhere in an array, the array must be: