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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。