Answers for "js list random order"

2

javascript random sort array

// O(n)
function shuffleArray(array) {
    for (let i = array.length - 1; i > 0; i--) {
        const j = Math.floor(Math.random() * (i + 1));
        [array[i], array[j]] = [array[j], array[i]];
    }
}
Posted by: Guest on October-01-2020
0

js list random order

for(let i = array.length — 1; i > 0; i--){  const j = Math.floor(Math.random() * i)  const temp = array[i]  array[i] = array[j]  array[j] = temp}
Posted by: Guest on October-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language