Which keyword is used to define a class in JavaScript?
A). class
B). defineClass
C). createClass
D). classDef
Which keyword is used to create a label in JavaScript?
A). mark
B). label
C). name
D). identifier
Which keyword is used to create a new instance of an object?
A). instance
B). create
C). new
D). object
What is the purpose of the break keyword in JavaScript?
A). To terminate a loop
B). To skip a loop iteration
C). To handle exceptions
D). To define a new function
Which keyword is used to handle exceptions in JavaScript?
A). try
B). handle
C). catch
D). exception
Which keyword is used to handle asynchronous operations in JavaScript?
A). async
B). await
C). sync
D). delay
What is the keyword used to declare a constant variable in JavaScript?
A). const
B). let
C). var
D). constant
What is the purpose of the yield keyword in JavaScript?
A). To pause and resume a generator function
B). To stop the execution of a function
C). To yield control to another function
D). To return a value from a function
What is the purpose of the arguments keyword in JavaScript?
A). To define function arguments
B). To pass arguments to a function
C). To access function arguments
D). To check if a variable is defined
What is the purpose of the delete keyword in JavaScript?
A). To delete all variables
B). To remove an element from an array
C). To delete properties from an object
D). To delete functions