Search⌘ K
AI Features

Summary: Objects

Explore key concepts of JavaScript objects, including their properties, methods, and how to access and modify them using dot or bracket notation. Understand object mutability, nested objects, and the use of the keyword this. This lesson prepares you to apply object basics before moving towards browser interactions in coding.

We'll cover the following...

Key points

  • Objects have properties that contain information about the object and methods that are actions the object can perform.

  • Object literals in JavaScript are a collection of ...