How to round the number 3.12 to a closer integer number?
Math.round(3.12)
Math.rnd(3.12)
float(3.12)
Math.float(3.12)
Correct Answer : A
If str = "VWXYZ", what returns str.charAt(3)?
What is the output of : String.fromCharCode(65) ?
Which keyword catches all values except those specified?