How to Randomize Array Position in JavaScript

How to Randomize Array Position in JavaScript

Introduction

In this tutorial we will create a How to Randomize Array Position in JavaScript. This tutorial purpose is to teach you how to randomize the array position. This will cover all the basic parts of the function that will randomize the array index position. 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 purpose is to show you how to randomize the array index position. I will give my best to provide you the easiest way of creating this program Randomize array position. So let's do the coding.

Before we get started:

This 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 only array value and the button. 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">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 Randomize Array Position in JavaScript</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <button class="btn btn-primary" type="button" onclick="shuffle();">Shuffle</button>
  17. <div id="result" style="width:550px; height:300px; border:10px solid #ccc; padding:20px;"></div>
  18.  
  19. </div>
  20. <script src="script.js"></script>
  21. </body>
  22. </html>

Creating JavaScript Function

This is where the main function of the application is. This code will randomize the array position when the button is clicked. To do this just copy and write these block of codes inside the text editor and save it as script.js.
  1. display();
  2.  
  3. function arrayRear(arr) {
  4. for (var i = 0, rear = [], randomIndex = 0; i < arr.length; i++) {
  5. randomIndex = Math.floor(Math.random() * arr.length);
  6. while (rear.indexOf(arr[randomIndex]) !== -1) {
  7. randomIndex = Math.floor(Math.random() * arr.length);
  8. }
  9. rear.push(arr[randomIndex]);
  10. }
  11.  
  12. return rear;
  13. }
  14.  
  15. function display(){
  16. let arr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20"];
  17. let html = "";
  18. for(let i=0; i<arr.length; i++){
  19. html += "<div width:200; height:200; style='margin:10px; font-size:50px; float:left;'>"+arr[i]+"</div>";
  20. }
  21. html += "<br style='clear:both;'/>";
  22.  
  23. document.getElementById('result').innerHTML = html;
  24. }
  25.  
  26. function shuffle(){
  27. let arr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20"];
  28. let html = "";
  29. arrayRear(arr).forEach(function(item){
  30. html += "<div width:200; height:200; style='margin:10px; font-size:50px; float:left;' >"+item+"</div>";
  31. })
  32. html += "<br style='clear:both;'/>";
  33.  
  34. document.getElementById('result').innerHTML = html;
  35. }

In the code above we create a special method called arrayRear(), this function will randomize the array index position of the targeted array. We will only create a method that will only display the array value and an event that will be triggered by binded button. To randomize the index postion of an array we will only just append the array value into the method that we created the arrayRear().

Output:

The How to Randomize Array Position 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 Randomize Array Position 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