DEV Community

Discussion on: JavaScript One-Liners That Make Me Excited

Collapse
 
elmuerte profile image
Michiel Hendriks • Edited

Why waste all those extra characters, this also works

(arr) => arr.slice().sort(() => Math.random() - 0.5)
Enter fullscreen mode Exit fullscreen mode
Collapse
 
healeycodes profile image
Andrew Healey

Nice find, thanks! Edited 👍.