Quiz: Create a Button That Talks
Explore your grasp of JavaScript basics by taking a quiz focused on creating interactive buttons that respond to clicks. This lesson helps reinforce how to add dynamic behavior to web pages, preparing you to apply these skills in upcoming mini-projects.
We'll cover the following...
We'll cover the following...
...
Technical Quiz
1.
What will this code display if the user types 42 in the prompt?
let input = prompt("Type a number:");
console.log(input + 1);
A.
43
B.
421
C.
TypeError
D.
1
1 / 4
...