Q.1 What will be the output of the following code?
console.log(typeof typeof 7);
Q.2 What is the output of the following code snippet?
console.log(0.1 + 0.2 === 0.3);
Q.3 What will be the output of the following code snippet?
Q.4 What will be the output of the following code snippet?
console.log(1 + 2 + "3");
Q.5 What will be the output of the following code snippet?
console.log(null == undefined);