How to Create a Lottery Number Generator in JavaScript

How to Create a Lottery Number Generator in JavaScript

Introduction

In this tutorial we will create a How to Create a Lottery Number Generator in JavaScript. This tutorial purpose is to teach you how to create a lottery game. This will tackle all the important functionality that allow you to generate a lottery number. I will provide a sample program to show the actual coding of this tutorial.

This tutorial is simple and easy to understand just follow the instruction I provided and you can do it without a problem. This program can be use to any system or application if you display a random data. I will give my best to provide you the easiest way of creating this program Lottery Number Generator. So let's do the coding.

Before we get started:

Here is the link for the template that i used for the layout design https://getbootstrap.com/.

Creating The Interface

This is where we will create a simple interface for our application. This code will display the trigger button and the result list. To create this simply copy and write it into your text editor, then save it as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  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. <nav class="navbar navbar-default">
  8. <div class="container-fluid">
  9. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10. </div>
  11. </nav>
  12. <div class="col-md-3"></div>
  13. <div class="col-md-6 well">
  14. <h3 class="text-primary">How to Create a Lottery Number Generator</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-6">
  17. <h1>6/58 Lottery Play</h1>
  18. <button class="btn btn-primary btn-block" onclick="rollNumber();">Roll A Number</button>
  19. </div>
  20. <div class="col-md-4">
  21. <h3>Lucky Numbers Result:</h3>
  22. <div id="result"></div>
  23. </div>
  24. </div>
  25. <script src="script.js"></script>
  26. </body>
  27. </html>

Creating JavaScript Function

This is where the main function of the application is. This code will generate a random lottery number when you click the button. To do this just copy and write these block of codes inside the text editor and save it as script.js.
  1. function rollNumber(){
  2. var set = [];
  3. while(set.length < 6){
  4. var r = Math.floor(Math.random() * 58) + 1;
  5. if(set.indexOf(r) === -1) set.push(r);
  6. }
  7.  
  8. displayResult(set);
  9. }
  10.  
  11.  
  12. function displayResult(set){
  13. set.join(", ");
  14.  
  15. document.getElementById('result').innerHTML="<center><h1 class='text-primary'>"+set+"</h1></center>";
  16. }

In the code above we just create a method called rollNumber(), this function will generate a random lottery number when triggered. Inside the function we create a blank array object that will hold the numbers. Then we use a loop that will loop through to increment the numbers to 6. We use the function Math.floor() to generate a random number base on the set condition.

Output:

The How to Create a Lottery Number Generator in JavaScript source code that I provide can be download below. Please kindly click the download button.

There you have it we successfully created How to Create a Lottery Number Generator in 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!

More Tutorials for JavaScript Language

JavaScript Tutorials

Add new comment