1
2
3
4
5
6
7
8
9
10
To practice on your own, or to check code you believe shouldn't have been scored as incorrect, go to CodePen.
0,1,2,3,4,5,6,7,8,9
0
0
0
0
The data type for true and false values is ________ | boolean | [b|B]oolean | |
The data type for "Hello world!" is _______ | string | [s|S]tring | |
The data type for -.0934 is ________ | number | [n|N]umber | |
The data type for the following is ________ | const patient409 = { name: "Felix Underwood" } |
object | [o|O]bject |
When the following code executes, what does the console display? | let x; console.log(x); |
undefined | [u|U]ndefined |
What is the data type of the following? | ["tempest", "gale", "storm"] | object | [o|O]bject |
Assign a value of nothing to x, which hasn't been declared beforehand. | let x = null; | letx=null; | |
What is the data type of the following? | const rightNow = new Date(); | object | [o|O]bject |
|
|||
|