How do you convert numbers between different bases in
JavaScript?
Answers were Sorted based on User's Feedback
Answer / venkateswaran
using Number() function we can converts the value of an
object to a number.
Example:
var test1= new Boolean(true);
var test2= new Date();
var test3= new String("999");
document.write(Number(test1)+ "<br />");
document.write(Number(test2)+ "<br />");
document.write(Number(test3)+ "<br />");
Is This Answer Correct ? | 11 Yes | 3 No |
Answer / heena
Use the parseInt() function, that takes a string as the
first parameter, and the base as a second parameter. So to
convert hexadecimal 3F to decimal, use parseInt ("3F", 16)
Is This Answer Correct ? | 6 Yes | 3 No |
What is postback in javascript?
Explain how to write class methods vs. Instance methods.
How do I add javascript to chrome?
Is javascript default scripting language?
What is enum size?
Explain higher-order functions in javascript?
Explain why asynchronous code is important in javascript?
What does question mark mean in react?
How do I unblock javascript in chrome?
What is difference between promise and callback?
Are java and javascript the same?
20 Functions of Selenium with description and Examples.