Skip to content

Instantly share code, notes, and snippets.

@mgng
Created September 6, 2010 00:23
Show Gist options
  • Save mgng/566477 to your computer and use it in GitHub Desktop.
Save mgng/566477 to your computer and use it in GitHub Desktop.
var s = '俺は高木ブーだ'.split('');
var buf=[];
for(var i=0,len=s.length; i<len*2; i++) {
buf.push(s[Math.round(Math.random()*len)]);
}
alert(buf.join('')+'!?');
// だだ木ーはだ俺ー高ブ木高!?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment