Javascript : Shuffle or randomize array example
Problem :
You have an array and you want to shuffle the items in the array. How to do that in Javascript?
Solution :
Use Math.random()
function to randomize the swapping process and the end result will be a shuffled/randomized array.
function shuffle(input){
for(
var j, x, i = input.length; i;
j = Math.floor(Math.random() * i),
x = input[--i],
input[i] = input[j],
input[j] = x
);
return input;
};
var intArray = ['0','1','2','3','4','5','6','7','8','9'];
shuffle(intArray);
console.log(intArray);
var strArray = ['abc','def','ghi','jkl','mno'];
shuffle(strArray);
console.log(strArray);
To see the output, use the browser's console viewer.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+25k Golang : Daemonizing a simple web server process example
+7.2k Golang : How to stop user from directly running an executable file?
+8k Golang : Oanda bot with Telegram and RSI example
+19.7k Golang : Reset or rewind io.Reader or io.Writer
+19.3k Golang : Close channel after ticker stopped example
+11.8k Golang : Save webcamera frames to video file
+13.9k Golang : Chunk split or divide a string into smaller chunk example
+8.8k Golang : Get curl -I or head data from URL example
+9.8k Golang : Read file and convert content to string
+6.9k Golang : Array mapping with Interface
+17.2k Golang : delete and modify XML file content
+18.4k Golang : convert int to string