Answers for "shuffle array in javascript function"

11

how to randomly sort an array javascript

array.sort(() => Math.random() - 0.5);
Posted by: Guest on May-29-2021
0

shuffle an array of numbers in javascript

let numbers = [5, 458 , 120 , -215 , 228 , 400 , 122205, -85411];
numbers = numbers.sort(function(){ return Math.random() - 0.5});
/* the array numbers will be equal for example to [120, 5, 228, -215, 400, 458, -85411, 122205]  */
Posted by: Guest on November-20-2020

Code answers related to "shuffle array in javascript function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language