Q:

Write a JavaScript program to randomize the order of the values of an array, returning a new array

0

Write a JavaScript program to randomize the order of the values of an array, returning a new array.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

const shuffle = ([...arr]) => {
  let m = arr.length;
  while (m) {
    const i = Math.floor(Math.random() * m--);
    [arr[m], arr[i]] = [arr[i], arr[m]];
  }
  return arr;
};
const foo = [1, 2, 3];

console.log(shuffle(foo));

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now