List of questions
Related questions
Question 32 - Certified JavaScript Developer I discussion
A developer is asked to fix some bugs reported by users. To do that, the developer adds a breakpoint for debugging.
Function Car (maxSpeed, color){
This.maxspeed =masSpeed;
This.color = color;
Let carSpeed = document.getElementById(' CarSpeed');
Debugger;
Let fourWheels =new Car (carSpeed.value, 'red');
When the code execution stops at the breakpoint on line 06, which two types of information are available in the browser console ?
Choose 2 answers:
A.
The values of the carSpeed and fourWheels variables
B.
A variable displaying the number of instances created for the Car Object.
C.
The style, event listeners and other attributes applied to the carSpeed DOM element
D.
The information stored in the window.localStorage property
Your answer:
0 comments
Sorted by
Leave a comment first