11.
What will typeof null return in JavaScript?
12.
What happens when you add a number and a string in JavaScript?
13.
What is the type of the value returned by parseFloat("3.14abc")?
14.
Given let a = "10"; let b = 20;, what is the result of a + b?
15.
What is the result of typeof [] in JavaScript?
16.
What does the isNaN function do?
17.
In JavaScript, what will be the type of a variable x after x = 5 + true;?
18.
What is the type of the value returned by JSON.parse("null")?
19.
What will be the result of typeof function() {} in JavaScript?
20.
How can you check if a variable is an array in JavaScript?