JavaScript - Check If Number Divisible By 3

In this tutorial we will create a Check If Number Divisible By 3 using JavaScript. This code will automatically calculate the divisible of a given number. The code itself use onclick() function to launch a specific method in order to calculate the correct divisible for the user inputted numeric value. This is helpful for the student that needed to know the amount of words in their project. 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 - Check If Number Divisible By 3</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" class="form-control" id="digit"/>
  20. <br />
  21. <center><button class="btn btn-primary" onclick="calculate();">Calculate</button></center>
  22. </div>
  23. <br />
  24. <div id="result"></div>
  25. </div>
  26. </div>
  27.  
  28. <script src="js/script.js"></script>
  29. </body>
  30. </html>

Creating the Script

This code contains the script of the application. This code will calculate the given number to find the divisible value 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 calculate(){
  2. var number = document.getElementById('digit').value;
  3. if(number % 3 == 0){
  4. document.getElementById('result').innerHTML = "<center><label>The number <span style='font-size:25px;' class='text-danger'>"+number+"</span> is divisible by 3</label></center>";
  5. }else{
  6. document.getElementById('result').innerHTML = "<center><label>The number <span style='font-size:25px;' class='text-danger'>"+number+"</span> is not divisible by 3</label></center>";
  7. }
  8. }
There you have it we successfully created a Check If Number Divisible By 3 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