Create objects with curly braces:
let person = {
name: "Alice",
age: 30,
city: "Seattle"
}
let empty = {}
Each property has a key and value separated by a colon. Properties are separated by commas. Keys are strings (quotes optional for valid identifiers).