揮発性のメモ2

http://d.hatena.ne.jp/iww/

strcmp

function strcmp(a,b){
  return a.localeCompare(b);
}
a < b
a==b 0
a > b

developer.mozilla.org