Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,971 questions

51,913 answers

573 users

How to randomize array in JavaScript

2 Answers

0 votes
function randomizeArray(array) 
{
  var index = array.length, randomIndex, tmp;

  while (index) 
  {
    randomIndex = Math.floor(Math.random() * index);
    index -= 1;

    tmp = array[index];
    array[index] = array[randomIndex];
    array[randomIndex] = tmp;
  }

  return array;
}

var array = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
array = randomizeArray(array);
document.write(array);
   
 
/*
run:
 
9,6,7,0,2,4,5,1,3,8 
 
*/

 



answered Feb 20, 2018 by avibootz
0 votes
function randomizeArray(array) 
{
  var randomIndex, tmp;
 
  for (var index = array.length - 1; index > 0; index--) 
  {
        randomIndex = Math.floor(Math.random() * (index + 1));
         
        tmp = array[index];
        array[index] = array[randomIndex];
        array[randomIndex] = tmp;
  }
 
  return array;
}
 

var array = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
array = randomizeArray(array);
document.write(array);
   
 
/*
run:
 
5,6,9,0,3,1,7,2,8,4 
 
*/

 



answered Feb 20, 2018 by avibootz
edited Feb 20, 2018 by avibootz

Related questions

1 answer 102 views
2 answers 151 views
151 views asked Mar 28, 2021 by avibootz
2 answers 445 views
2 answers 126 views
3 answers 192 views
1 answer 81 views
81 views asked Aug 6, 2024 by avibootz
...