Join the AI Workshop to learn more about AI and how it can be applied to web development. Next cohort February 1st, 2026
The AI-first Web Development BOOTCAMP cohort starts February 24th, 2026. 10 weeks of intensive training and hands-on projects.
Here’s how we define an object:
const car = {}
This is the object literal syntax, which is one of the nicest things in JavaScript.
You can also use the new Object syntax:
const car = new Object()
or also Object.create():
const car = Object.create({})
Those are all equivalent. The end result will be the same thing.