A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/sort below:

TypedArray.prototype.sort() - JavaScript | MDN

TypedArray.prototype.sort()

Baseline Widely available

sort() 方法原地排序类型化数组的元素,并且返回类型化数组。这个方法的算法和Array.prototype.sort() 相同。TypedArray 是这里的类型化数组类型 之一。

语法 参数
compareFunction 可选

指定定义排序顺序的函数

返回值

排序后的类型化数组。

示例

更多示例请参考 Array.prototype.sort() 方法。

var numbers = new Uint8Array([40, 1, 5, 200]);
numbers.sort();
// Uint8Array [ 1, 5, 40, 200 ]
// 在这里,按数值排序数值时,
// 不需要比较函数。

var numbers = [40, 1, 5, 200];
numbers.sort();
// 将元素作为字符串来排序。
// [1, 200, 40, 5]

function compareNumbers(a, b) {
  return a - b;
}

numbers.sort(compareNumbers);
// [ 1, 5, 40, 200 ]
规范 浏览器兼容性 参见

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4