🎴 Flashcard Mode

JavaScript and Web Development Programming Quiz

Card1 / 20
Mastered0
Review0
QuestionClick to flip

Can we create multiple objects of a single class

AnswerClick to flip back
A
True
💡 Explanation:

In object-oriented programming, a class serves as a blueprint. Multiple objects (instances) can be created from a single class using the 'new' keyword. Each object has its own state but shares the same structure and behavior defined by the class.

Change Mode