Javascript-Decimal to Binary conversion
Javascript decimal number to binary value conversion is used to calculate binary value for a given decimal number.
Features
- You can convert decimal number to binary value using this javascript.
- Just copy the code and use it.
Preview
Enter decimal number to convert it to binary value
Downloads
Javascript Code <!-- Script by hscripts.com -->
<script type="text/javascript">
function isNum(args)
{
args = args.toString();
if (args.length == 0)
return false;for (var i = 0;i<args.length;i++)
{
if (args.substring(i,i+1) < "0" || args.substring(i, i+1) > "9")
{
return false;
}
}return true; } function deciToBin(arg) {
res1 = 999;
args = arg;
while(args>1)
{
arg1 = parseInt(args/2);
arg2 = args%2;
args = arg1;
if(res1 == 999)
{
res1 = arg2.toString();
}
else
{
res1 = arg2.toString()+res1.toString();
}
}
if(args == 1 && res1 != 999)
{
res1 = args.toString()+res1.toString();
}
else if(args == 0 && res1 == 999)
{
res1 = 0;
}
else if(res1 == 999)
{
res1 = 1;
}
var ll = res1.length;
while(ll%4 != 0)
{
res1 = "0"+res1;
ll = res1.length;
}
return res1; } function change(name) {
var sd = name.value;
if(isNum(sd))
{
var result = deciToBin(sd);
document.first.deciBin.value = result;
}
else
{
document.first.deci.value = sd.substring(0,sd.length-1) ;
} } </script>
<!-- Script by hscripts.com -->
- Get free version without ©copyright link for just $10/-
- For customization of this script or any script development, mail to support@hscripts.com
Usage
- He we have explained with a form
- Copy the HTML code given below to create form
<form name=first>
Dimal Number: <input name=deci type="text" onkeyup="change(this)" size=20>
Binary Number: <input name=deciBin type="text" size=20 readonly class=resform>
</form>
Copy the above Javascript code into your page and use it. If decimal number is entered in the textbox. The javascript function "change()" converts the given value into binary number.
License
Related Scripts