Array.sort()是内置的TypeScript函数,用于对数组的元素进行排序。句法:
array.sort( compareFunction )
参数:该方法接受上述和以下描述的单个参数:
- compareFunction:此参数是定义排序顺序的函数
返回值:此方法返回排序后的数组。
下面的示例说明TypeScriptJS中的Array sort()方法:示例1:
的JavaScript
<script>
// Driver code
var arr = [ 11, 89, 23, 7, 98 ];
// use of sort() method
var val = arr.sort();
// printing
console.log( val );
</script>
输出:
[ 11, 23, 7, 89, 98 ]
范例2:
的JavaScript
<script>
// Driver code
var arr = ["G", "e", "e", "k", "s", "f", "o", "r",
"g", "e", "e", "k", "s"];
var val;
// use of sort() method
val = arr.sort();
console.log( val );
</script>
输出:
[ 'G', 'e', 'e', 'e', 'e', 'f', 'g', 'k', 'k', 'o', 'r', 's', 's' ]
相关用法
- Typescript Array unshift()用法及代码示例
- Typescript Array toString()用法及代码示例
- Typescript Array splice()用法及代码示例
- Typescript Array some()用法及代码示例
- Typescript Array slice()用法及代码示例
- Typescript Array shift()用法及代码示例
- Typescript Array reverse()用法及代码示例
- Typescript Array reduceRight()用法及代码示例
- Typescript Array reduce()用法及代码示例
- Typescript Array push()用法及代码示例
- Typescript Array pop()用法及代码示例
- Typescript Array map()用法及代码示例
- Typescript Array lastIndexOf()用法及代码示例
- Typescript Array join()用法及代码示例
- Typescript Array indexOf()用法及代码示例
- Typescript Array forEach()用法及代码示例
- Typescript Array filter()用法及代码示例
- Typescript Array every()用法及代码示例
- Typescript Array concat()用法及代码示例
- Typescript toExponential()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 TypeScript | Array sort() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。