Data Types & Type Conversion Interview Questions

    Question 1JavaScript Data Type of typeof null

    What is the result of typeof null in JavaScript?

    Question 2Checking Not-a-Number (NaN)

    Which of the following is true about NaN in JavaScript?

    Question 3Type of BigInt

    What is the type of the value 123n in JavaScript?

    Question 4Type Conversion to Number

    What is the result of Number("123abc")?

    Question 5Boolean Conversion Rule

    Which of the following values converts to false when used in Boolean conversion?

    Question 6Type of Symbol

    What is the type of Symbol("id")?

    Question 7String to Number Conversion

    What will be the result of "5" - 2 in JavaScript?

    Question 8Implicit Conversion with + Operator

    What is the result of "5" + 2 in JavaScript?

    Question 9Undefined Value Type

    What is the type of undefined in JavaScript?

    Question 10Equality with Type Conversion

    What is the result of 0 == "0" in JavaScript?