0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【JavaScript】sort関数が数値の大きさでソートしない理由の考察

Last updated at Posted at 2023-12-12

きっかけ

上の記事を読んで、なんでこんな怠い設計なんだろうなーとぼんやり考えていたら、突然ひらめいた。
ので書く。

なぜなのか

JSの配列では数値や文字列などを混合させることができるから。
数値のみの配列、文字列のみの配列、Dateのみの配列などで処理を変えることは容易だろうが、
混合されている場合、ソートのルールは各使用者の思惑によって変わってくる。
どういう挙動にしようが、「なんでこんなクソみたいな仕様なんだよ。」という声は出てくる。
ならいっそのこと面倒くさい型ごとの分岐処理などは組み込まず、(引数が指定されていなかった場合は)要素を文字列に変換してソートする。という単純な実装にしたのではないだろうか?

終わり。

0
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?