Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

TypeError: invalid Array.prototype.sort argument

この記事は編集レビューを必要としています。ぜひご協力ください

メッセージ

TypeError: invalid Array.prototype.sort argument (Firefox)

エラータイプ

TypeError

何がうまくいかなかったのか?

Array.prototype.sort() の引数には、undefined かオペランドを比較する関数のいずれかが求められれます。

無効なケース

[1, 3, 2].sort(5);  // TypeError

var cmp = { asc: (x, y) => x >= y, dsc : (x, y) => x <= y };
[1, 3, 2].sort(cmp[this.key] || 'asc');  // TypeError

有効なケース

[1, 3, 2].sort();   // [1, 2, 3]


var cmp = { asc: (x, y) => x >= y, dsc : (x, y) => x <= y };
[1, 3, 2].sort(cmp[this.key || 'asc']); // [1, 2, 3]

関連項目

ドキュメントのタグと貢献者

 このページの貢献者: YuichiNukiyama
 最終更新者: YuichiNukiyama,