11.
What is the result of parseInt("0xF", 16)?
12.
What does Number.isInteger(123.45) return?
13.
What does parseFloat("12.34abc") return?
14.
What does (123.456).toFixed(1) return?
15.
Which method can convert a number to a different base (e.g., hexadecimal)?
16.
What does Number.isNaN("123") return?
17.
What does parseInt("101", 2) return?
18.
Which method would you use to check if a value is a finite number?
19.
What does Number("123abc") return?
20.
What is the output of (255).toString(2)?