Skip to content

Instantly share code, notes, and snippets.

@mgng
Created July 9, 2009 04:13
Show Gist options
  • Save mgng/143419 to your computer and use it in GitHub Desktop.
Save mgng/143419 to your computer and use it in GitHub Desktop.
シャッフルメモ
(function(){
var l='マ,イ,ケ,ル,ジャ,ク,ソ,ン'.split(',');
function s(a){var i=a.length,j,t;while(i){j=Math.floor(Math.random()*i),t=a[--i];a[i]=a[j];a[j]=t;}return a;}
alert(s(l).join(''))
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment