1.
What is the result of 5 == '5' in JavaScript?
2.
What does 5 === '5' evaluate to in JavaScript?
3.
What will be the output of 10 != '10' in JavaScript?
4.
How does JavaScript evaluate 10 !== '10'?
5.
What is the result of 5 > 3 in JavaScript?
6.
What does 5 < 10 evaluate to in JavaScript?
7.
What will be the output of 5 >= 5 in JavaScript?
8.
How does JavaScript evaluate 5 <= 4?
9.
What is the result of '10' > 5 in JavaScript?
10.
What does '5' < 10 evaluate to in JavaScript?