Toggle navigation
Mr. Code's Wild Ride
Mr. Code
Curriculum
Showcase
Python
Math
Games
Typing
Sign in
Object
light theme
dark theme
An object is a collection of variables and functions, which are called properties and methods in an object.
Make object
let card = { rank: 2, suit: `clubs` }
Get property from object
card.rank // will be 2 card.suit // will be `clubs`
×
Sign in