Array.every()是內置的TypeScript函數,用於檢查數組中的所有元素是否通過了由提供的函數實現的測試。句法:
array.every(callback[, thisObject])
參數:此方法接受上麵提到和下麵描述的兩個參數:
- callback:此參數是要測試每個元素的函數。
- thisObject:此參數是執行回調時用作此對象的Object。
返回值:如果此數組中的每個元素都滿足提供的測試函數,則此方法返回true。
下麵的示例說明TypeScript中的Array every()方法
範例1:
的JavaScript
<script>
// Check for positive number
function ispositive(element, index, array)
{
return element > 0;
}
// Driver code
var arr = [ 11, 89, 23, 7, 98 ];
// Check for positive number
var value = arr.every(ispositive);
console.log( value );
</script>
輸出:
true
範例2:
的JavaScript
<script>
// Check for odd number
function isodd(element, index, array)
{
return (element % 2 == 1);
}
// Driver code
var arr = [ 11, 89, 23, 7, 98 ];
// Check for positive number
var value = arr.every(isodd);
console.log( value );
</script>
輸出:
false
相關用法
- Typescript Array unshift()用法及代碼示例
- Typescript Array toString()用法及代碼示例
- Typescript Array splice()用法及代碼示例
- Typescript Array sort()用法及代碼示例
- 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 concat()用法及代碼示例
- Typescript toExponential()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | Array every() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。