• We just launched and are currently in beta. Join us as we build and grow the community.

JavaScript - Simple Digit Reversal

Ntc

Crypto Data Analyst
N Rep
0
0
0
Rep
0
N Vouches
0
0
0
Vouches
0
Posts
68
Likes
80
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 200 XP
In this tutorial we will create a Simple Digit Reversal using JavaScript. This code will reverse a digit in the form when the user submit the given number. The code itself use onclick() function to initiate the mathematical formula to generate a reversal copy of the given number. This code is free to use, you can modify it as your own,

We will be using JavaScript as a server-side scripting language because It allows greater control of your web page behavior than HTML alone. It is embedded in HTML that responsible to allow user to interact with the computer .

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.
  1. <!DOCTYPE html>
  2. <html

    >
  3. <head

    >
  4. <meta

    charset

    =

    "UTF-8"

    name

    =

    "viewport"

    content

    =

    "width=device-width, initial-scale=1"

    /

    >
  5. <link

    rel

    =

    "stylesheet"

    type

    =

    "text/css"

    href

    =

    "css/bootstrap.css"

    /

    >
  6. </

    head

    >
  7. <body

    >
  8. <nav class

    =

    "navbar navbar-default"

    >
  9. <div

    class

    =

    "container-fluid"

    >
  10. <a

    class

    =

    "navbar-brand"

    href

    =

    "https://sourcecodester.com"

    >

    Sourcecodester</

    a

    >
  11. </

    div

    >
  12. </

    nav>
  13. <div

    class

    =

    "col-md-3"

    ></

    div

    >
  14. <div

    class

    =

    "col-md-6 well"

    >
  15. <h3

    class

    =

    "text-primary"

    >

    JavaScript - Simple Digit Reversal</

    h3

    >
  16. <hr

    style

    =

    "border-top:1px dotted #ccc;"

    /

    >
  17. <div

    class

    =

    "col-md-3"

    ></

    div

    >
  18. <div

    class

    =

    "col-md-6"

    >
  19. <div

    class

    =

    "form-group"

    >
  20. <label

    >

    Enter a number</

    label

    >
  21. <input

    type

    =

    "number"

    min=

    "0"

    class

    =

    "form-control"

    id

    =

    "digit"

    /

    >
  22. <br

    /

    >
  23. <center

    ><button

    class

    =

    "btn btn-primary"

    onclick

    =

    "reverseDigit();"

    >

    Reverse</

    button

    >

    <button

    class

    =

    "btn btn-success"

    onclick

    =

    "reset();"

    >

    Reset</

    button

    ></

    center

    >
  24. <br

    /

    >
  25. <div

    id

    =

    "result"

    ></

    div

    >
  26. </

    div

    >
  27. </

    div

    >
  28. </

    div

    >
  29. <script

    src

    =

    "js/script.js"

    ></

    script

    >
  30. </

    body

    >
  31. </

    html

    >

Creating the Script

This code contains the script of the application. This code will automatically reverse a number 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.
  1. function

    reset(

    )

    {
  2. document.getElementById

    (

    "digit"

    )

    .value

    =

    ""

    ;
  3. document.getElementById

    (

    'digit'

    )

    .removeAttribute

    (

    'readonly'

    )

    ;
  4. document.getElementById

    (

    "result"

    )

    .innerHTML

    =

    ""

    ;
  5. }

  6. function

    reverseDigit(

    )

    {
  7. var

    reverse=

    0

    ;
  8. var

    input =

    document.getElementById

    (

    "digit"

    )

    .value

    ;
  9. if

    (

    input !=

    0

    )

    {
  10. var

    digit =

    parseInt(

    input)

    ;
  11. while(

    digit)

    {
  12. reverse =

    parseInt(

    reverse *

    10

    )

    ;
  13. reverse =

    parseInt(

    reverse +

    (

    digit%

    10)

    )

    ;
  14. digit =

    parseInt(

    digit/

    10

    )

    ;
  15. }
  16. document.getElementById

    (

    "digit"

    )

    .setAttribute

    (

    'readonly'

    ,

    'readonly'

    )

    ;
  17. document.getElementById

    (

    "result"

    )

    .innerHTML

    =

    "<center><label style='font-size:20px;'>Reverse digit is: <span style='font-size:25px:' class='text-primary'>"

    +

    reverse+

    "</span></label></center>"

    ;
  18. }

    else

    {
  19. alert(

    "Please complete the required field!"

    )

    ;
  20. }

  21. }

There you have it we successfully created a Simple Digit Reversal 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.
 

452,496

330,760

330,768

Top