1.
What does the typeof operator return for an undefined variable?
2.
What will be the output of typeof null in JavaScript?
3.
How does the typeof operator handle arrays in JavaScript?
4.
What is the result of typeof NaN in JavaScript?
5.
What does typeof true evaluate to in JavaScript?
6.
How does the instanceof operator work in JavaScript?
7.
What will be the output of [] instanceof Array in JavaScript?
8.
What does Number('123') return in JavaScript?
9.
What is the result of Boolean('false') in JavaScript?
10.
How does JavaScript evaluate Boolean(0)?