Proposal: Electron dance
Timed out/quorumed 3 votes to 0. Enacted by Kevan.
Adminned at 18 Oct 2018 08:56:29 UTC
Add the following function to the Master Control Program, after the closing curly brace of the function “randomChar()”:
function shuffleArray(a) { for (let i = a.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [a [ i ], a [ j ] ] = [a [ j ], a [ i ]]; } return a; }
Kevan: he/him