Home / CSE / Javascript - CS :: Discussion

Discussion :: Javascript - CS

  1. What will happen if the radix parameter of the parseInt() function is omitted?

  2. A.

     Runs in assumption

    B.

     Throws exception

    C.

     Aborts

    D.

     Taken as 0

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    If the radix parameter is omitted, JavaScript assumes the following:
    1. If the string begins with “0x”, the radix is 16 (hexadecimal)
    2. If the string begins with “0”, the radix is 8 (octal). This feature is deprecated
    3. If the string begins with any other value, the radix is 10 (decimal)


Be The First To Comment