Which keyword is used to define a class in ES6?
- class
- type
- struct
- interface
In ES6, the class keyword is used to define a class. It provides a cleaner syntax for creating constructor functions and prototypes. Classes allow for easier code organization and inheritance in JavaScript.
Loading...
Related Quiz
- Inside a template literal, the expression ${a + b} will __________ the values of a and b.
- Can you use both named and default exports in the same ES6 module?
- When a generator function is initially called, it returns a(n) __________ object.
- In an event handler inside a React class component, what implications does using an arrow function have compared to a traditional function?
- How can destructuring assignment be effectively used in React components to handle props and state?