We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 732e7b8 commit aeaa5c5Copy full SHA for aeaa5c5
1 file changed
part1 (Basics)/12_Quizzes.js
@@ -0,0 +1,15 @@
1
+// INFO: what will be the output of the following code ?
2
+console.log(a);
3
+var a = 5;
4
+console.log(a); // undefined 5
5
+
6
7
+// INFO: What will be output of this snippet ?
8
+// console.log(x);
9
+let x = 10; // Reference Error
10
11
12
+// INFO: what this will return ?
13
+console.log(typeof typeof 42); // string
14
+console.log(null == undefined); // true
15
+console.log(null === undefined); // false
0 commit comments