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 percentage of websites use javascript?
why we calld java object orinted programming language??
How long does it take to get good at javascript?
What is difference between javascript and jscript?
Are namespaces are there in javascript?
Is html and javascript the same?
How do you organize your JavaScript code?
Why javascript is dangerous?
what is the function of public class main ?
If 2 methods have same name and same number of parameters, which one will be executed first?
what is function of stdio.h
Can i create an login account with javascript ,without using database ?