- Use `for in` to Loop Through an Object's Properties 4:31
- Loop Through an Object's Properties 2 objectives
- Useful JavaScript Object Methods
- Store Objects in Arrays 3:45
- Create an Array of Objects 2 objectives
- Build an Object Challenge 1:17
- Build an Object Challenge – One Solution 3:09
- Display an Array of Objects on the Page – One Solution 7:14
- Review `for in` and Arrays of Objects 6 questions
Well done!
You have completed Review `for in` and Arrays of Objects!
Quiz Question 1 of 6
Given the following JavaScript object:
const student = {
userName: 'Lee',
degree: 'FSJS',
points: 14888
};
Which of the following displays the values "Lee", "FSJS", and 14888 in the JavaScript console?
Choose the correct answer below: