JavaScript - Simple Digit Reversal

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.         <head>
  3.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  4.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  5.         </head>
  6.  <nav class="navbar navbar-default">
  7.         <div class="container-fluid">
  8.                 <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  9.         </div>
  10.  </nav>
  11.  <div class="col-md-3"></div>
  12.  <div class="col-md-6 well">
  13.         <h3 class="text-primary">JavaScript - Simple Digit Reversal</h3>
  14.         <hr style="border-top:1px dotted #ccc;"/>
  15.         <div class="col-md-3"></div>
  16.         <div class="col-md-6">
  17.                 <div class="form-group">
  18.                         <label>Enter a number</label>
  19.                         <input type="number" min="0" class="form-control" id="digit"/>
  20.                         <br />
  21.                         <center><button class="btn btn-primary" onclick="reverseDigit();">Reverse</button> <button class="btn btn-success" onclick="reset();">Reset</button></center>
  22.                         <br />
  23.                         <div id="result"></div>
  24.                 </div>
  25.         </div>
  26.  </div>
  27. <script src="js/script.js"></script>
  28. </body>
  29. </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.  
  7. function reverseDigit(){
  8.         var reverse=0;
  9.         var input = document.getElementById("digit").value;
  10.         if(input != 0){
  11.                 var digit = parseInt(input);
  12.                 while(digit){
  13.                         reverse = parseInt(reverse * 10);
  14.                         reverse = parseInt(reverse + (digit%10));
  15.                         digit = parseInt(digit/10);
  16.                 }
  17.                 document.getElementById("digit").setAttribute('readonly', 'readonly');
  18.                 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>";
  19.         }else{
  20.                 alert("Please complete the required field!");
  21.         }
  22.        
  23. }
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!

Add new comment