Array Lesson Learning Objectives
Below is a complete list of the terminal learning objectives for this lesson. When you complete this lesson, you should be able to perform each of the following objectives. These objectives capture how you may be evaluated on the assessment for this lesson.
- Define that an array literal is an ordered list of values defined by using bracket and individual values are read by indexing.
- Given an array and an index, find an element in the array at the index.
- Given an array and an element, find the first index of the element in the array.
- Write a function that takes in an array of words and a string as arguments and returns a boolean indicating whether the string is located inside of the array.
- Write a function that iterates through a provided array argument.