Skip to content

Instantly share code, notes, and snippets.

@OleksandrLz
Created March 13, 2018 13:11
Show Gist options
  • Select an option

  • Save OleksandrLz/fff35a2f2206e0744b7c30c6a4597a3f to your computer and use it in GitHub Desktop.

Select an option

Save OleksandrLz/fff35a2f2206e0744b7c30c6a4597a3f to your computer and use it in GitHub Desktop.
// random sort arr
arr.sort(function(){
return Math.random() > 0.5;
})
// random number from ... to ...
function mtRandom(min, max){
let diff = max-min;
return Math.floor(Math.random() * (diff +1) + min);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment