揮発性のメモ2

知識をメモ書きしておく

strcmp

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

developer.mozilla.org