JavaScript LinkedIn Learning
JavaScript LinkedIn Learning
15. Which of the below object property names are not valid?
Lines 2, 3, 5, and 6
31. What does the HTML markup of this image element look
like after the following script has executed?
32. What is the value of const target after this code has
executed?
33. What is the value of const target after this code has
executed (assuming there are elements in the DOM with the
class "note")?
Nowhere: The element is created, but has not been added to the
DOM.
38. What is the "DOM"?
"purple"
44. In what scenario should you use var instead of let to define
a variable?
let sum = 23.95; let tip = "3"; console.log("The total is $" + sum
+ tip + ".");
a = b a == b a === b
48. Given the array below, how would you access the item
whose value is 7?
numbers[1]
49. What will the numbers array look like when the following
code finishes executing?
1, 2, 3, 4, 5
FALSE
The switch statement returns the first case that resolves to true,
then stops.
[2,3,4,5]
FALSE
58. What logical operator signifies negation (not)?
">=10"
FALSE
65. What is logged in the console when this script executes?
Nothing (undefined)
myFunction(1);
TRUE
71. What goes in place of a and b in this standard event
listener?
element.addEventListener("__a__", "__b__");
a: the event name b: the function to call when the event fires
myElement.addEventListener(eventName, function(e) {
eventFunction(e,this); });
73. Why does this return the window object in the following
event listener definition?
myElement.addEventListener(eventName, () => {
console.log(this); });
Arrow functions do not have their own this, so they refer to the
closest defined this which is the window object.
ham is to hamster