Which data type represents a collection of values in JavaScript?
A). Object
B). Array
C). String
D). Number
How do you define a function in JavaScript using a function declaration?
A). function myFunction() { /* code */ }
B). myFunction = function() { /* code */ }
C). myFunction() { /* code */ }
D). myFunction: function() { /* code */ }
How do you add an element to the end of an array in JavaScript?
A). Using the push() method
B). Using the add() method
C). Using the append() method
D). Using the end() method
What is the result of typeof [] in JavaScript?
A). object
B). array
C). list
D). string
How do you access a property of an object in JavaScript?
A). Using dot notation (objectName.propertyName)
B). Using square brackets (objectName['propertyName'])
C). Both A and B
D). Neither A nor B
How do you define a method within an object in JavaScript?
A). By using the function keyword followed by the method name and code block.
B). By using the method keyword followed by the method name and code block.
C). By using the define keyword followed by the method name and code block.
D). By using the process keyword followed by the method name and code block.
How can you remove the last element from an array in JavaScript?
A). Using the pop() method.
B). Using the shift() method.
C). Using the unshift() method.
D). Using the removeLast() method.
What is the purpose of using arrays in JavaScript?
A). To store a single value
B). To store a collection of values
C). To define object properties
D). To create conditional statements
What is the purpose of using the length property with arrays in JavaScript?
A). To access the last element of the array.
B). To add elements to the array.
C). To determine the number of elements in the array.
D). To access the first element of the array.
What is a function in JavaScript?
A). A variable
B). A loop
C). A block of code that performs a specific task
D). An object