typedArray.every()函數是JavaScript中的內置函數,用於測試typedArray中存在的元素是否滿足該函數提供的條件。句法:
typedarray.every(callback)
參數:它以回調函數為參數。
回調是用於測試typedArray元素的函數。此回調函數采用以下指定的三個參數-
- current_value:它是typedArray中正在處理的當前元素。
- index:它是在類型化數組中正在處理的當前元素的索引。
- array:它是typedArray。
返回值:如果函數回調為typedArray中存在的每個數組元素返回true值,則返回true,否則返回false。
代碼1:
<script>
// is_negative function is called to test the
// elements of the typedArray element.
function is_negative(current_value, index, array)
{
return current_value < 0;
}
// Creating a typedArray with some elements
const A = new Int8Array([ -5, -10, -15, -20, -25, -30 ]);
// Printing whether elements are satisfied by the
// functions or not
document.write(A.every(is_negative));
</script>
輸出:
true
代碼2:
<script>
// is_negative function is called to test the
// elements of the typedArray element.
function is_positive(current_value, index, array)
{
return current_value > 0;
}
// Creating a typedArray with some elements
const A = new Int8Array([ -5, -10, -15, -20, -25, -30 ]);
// Printing whether elements are satisfied by the
// functions or not
document.write(A.every(is_positive));
</script>
輸出:
false
相關用法
- Javascript typedArray.from()用法及代碼示例
- Javascript typedArray.of()用法及代碼示例
- Javascript weakSet.has()用法及代碼示例
- Javascript typedArray.map()用法及代碼示例
- Javascript weakSet.add()用法及代碼示例
- Javascript weakMap.set()用法及代碼示例
- Javascript weakMap.has()用法及代碼示例
- Javascript getPrototypeOf()用法及代碼示例
- Javascript uneval()用法及代碼示例
- Javascript parseInt()用法及代碼示例
- Javascript parseFloat()用法及代碼示例
- Javascript unescape()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 JavaScript | typedArray.every() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。