Skip to content

Instantly share code, notes, and snippets.

@kemalelmizan
Created March 28, 2022 06:39
Show Gist options
  • Save kemalelmizan/15d9fe986b9c44df9195810d20d0081a to your computer and use it in GitHub Desktop.
Save kemalelmizan/15d9fe986b9c44df9195810d20d0081a to your computer and use it in GitHub Desktop.
Shuffle string
const shuffle = str => [...str].sort(()=>Math.random()-.5).join('');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment