TECH4U
Objects (part 1)
Lesson - 8
Tech4umm
TECH4U
What Is a Objects?
Objects let us organize complex data like user profiles, game characters, app
settings, and more—all in a single variable. You’ll use them everywhere:
frontend, backend, APIs.
Tech4umm
TECH4U
Basic Object Syntax house
var objectName = {
key1: value1,
key2: value2,
key3: value3
}; room 1 room 2
objectName.key1;
Tech4umm
TECH4U
Object example
📚 Key Terms:
Object → A container for related data
Property → A label inside an object (like age)
Value → The info attached to that property
Dot Notation → The . used to access
properties (e.g., [Link])