Quiz on JavaScript Basics
Test your knowledge of JavaScript basics.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What is displayed after the following program executes if the user inputs 2
and 5
, respectively?
let a = prompt();
let b = prompt();
console.log(a + b);
A.
It shows (2+5)
as a string.
B.
It shows 7
as a number.
C.
It shows 25
as a string.
D.
It shows 2+5
as a string.
1 / 10
...