22.
How do you define an object in JavaScript?
Using the "object" keyword
Using the "let" keyword
Using the "function" keyword
Using curly braces {}
Correct: D
In JavaScript, objects can be defined using curly braces {}. Inside the curly braces, you can define key-value pairs that represent the properties and values of the object.