Jamiew1103
Organic Growth Wizard
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
100 XP
In this tutorial we will create a Convert Binary To Decimal using JavaScript. This code will convert the given binary into decimal when the user click the convert button. The code use onclick() function to parse the given value as int in order to convert the value into decimal by adding it as an argument parseInt(binary, 2). Feel free to modify and apply it in your system, this is a user-friendly kind of program
We will be using JavaScript as a server-side scripting language because It gives a greater control of your web page and extend its capability in a modern way approach. It is written in HTML or as an external sourcing to add some necessary features in your website.
Getting started:
First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.
The Main Interface
This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
Creating the Script
This code contains the script of the application. This code will convert the binary into decimal when the button is clicked. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
There you have it we successfully created a Convert Binary To Decimal using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!
Download
We will be using JavaScript as a server-side scripting language because It gives a greater control of your web page and extend its capability in a modern way approach. It is written in HTML or as an external sourcing to add some necessary features in your website.
Getting started:
First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.
The Main Interface
This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
- <!DOCTYPE html>
- <html
lang
=
"en"
>
- <meta
charset
=
"UTF-8"
name
=
"viewport"
content
=
"width=device-width, initial-scale=1"
/
>
- <link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"css/bootstrap.css"
/
>
- <body
>
- <nav class
=
"navbar navbar-default"
>
- <div
class
=
"container-fluid"
>
- <a
class
=
"navbar-brand"
href
=
"https://sourcecodester.com"
>
Sourcecodester</
a
>
- </
div
>
- </
nav>
- <div
class
=
"col-md-3"
></
div
>
- <div
class
=
"col-md-6 well"
>
- <h3
class
=
"text-primary"
>
JavaScript - Convert Binary To Decimal</
h3
>
- <hr
style
=
"border-top:1px dotted #ccc;"
/
>
- <div
class
=
"col-md-3"
></
div
>
- <div
class
=
"col-md-6"
>
- <div
class
=
"form-group"
>
- <label
>
Enter a binary</
label
>
- <input
type
=
"number"
id
=
"binary"
class
=
"form-control"
/
>
- </
div
>
- <center
><button
class
=
"btn btn-primary"
onclick
=
"binaryToDecimal();"
>
Convert</
button
>
<button
class
=
"btn btn-success"
onclick
=
"reset();"
>
Reset</
button
></
center
>
- <br
><br
>
- <div
id
=
"result"
></
div
>
- </
div
>
- </
div
>
- <script
src
=
"js/script.js"
></
script
>
- </
body
>
- </
html
>
Creating the Script
This code contains the script of the application. This code will convert the binary into decimal when the button is clicked. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
- function
binaryToDecimal(
)
{
- var
binary =
document.getElementById
(
"binary"
)
.value
;
- if
(
binary ==
""
)
{
- alert(
"Please fill up the required field!"
)
;
- }
else
{
- if
(
/^[01]+$/
.test
(
binary)
)
{
- var
decimal =
parseInt(
binary,
2
)
;
- document.getElementById
(
"result"
)
.innerHTML
=
"<center><label style='font-size:18px;'>The decimal number is</label></center><center><h3 class='text-primary'>"
+
decimal+
"</h3></center>"
;
- }
else
{
- alert(
"Please enter binary numbers"
)
;
- }
- }
- }
- function
reset(
)
{
- document.getElementById
(
"decimal"
)
.value
=
""
;
- document.getElementById
(
"result"
)
.innerHTML
=
""
;
- }
There you have it we successfully created a Convert Binary To Decimal using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!
Download
You must upgrade your account or reply in the thread to view the hidden content.