Question: 1
Which three actions can be done using the JavaSript browser console?
Choose 3 answer
Question: 2
In which situation should a developer include a try... catch block around their function call?
Question: 3
A class was written to represent items for purchase in an online store, and a second class representing items that are on sale at a discounted price. The constructor sets the name to the first value passed in. The pseudocode is below:
There is a new requirement for a developer to implement a description method that will retrun a brief description for item and saleitem.
What is the out when executing the code above?
Question: 4
Given the following code:
Let x = ('15' +10) +2;
What is the value of x?
Question: 5
Refer to the following code:
Which two statements could be inserted at line 17 to enable the function call on line 18?
Choose 2 answers