TypedArray 的 find() 函數接受一個表示函數名稱的字符串值,測試數組中的元素是否通過提供函數實現的測試,如果通過,則返回第一個通過測試的元素,否則返回 undefined。
用法
其語法如下
typedArray.find(function_name)
示例
<html>
<head>
<title>JavaScript Array every Method</title>
</head>
<body>
<script type="text/javascript">
var int32View = new Int32Array([21, 19, 65,21, 14, 66, 87, 55 ]);
document.write("Contents of the typed array:"+int32View);
document.write("<br>");
function testResult(element, index, array) {
var ele = element>35
return ele;
}
result = int32View.find(testResult);
document.write("Result:"+result);
</script>
</body>
</html>
輸出
Contents of the typed array:64,89,65,21,14,66,87,55 Result:65
示例
如果 Array 不包含所需的元素,則此函數返回 undefined。
<html>
<head>
<title>JavaScript Array every Method</title>
</head>
<body>
<script type="text/javascript">
var int32View = new Int32Array([21, 19, 65,21, 14, 66, 87, 55 ]);
document.write("Contents of the typed array:"+int32View);
document.write("<br>");
function testResult(element, index, array) {
var ele = element>100
return ele;
}
result = int32View.find(testResult);
document.write("Result:"+result);
</script>
</body>
</html>
輸出
Contents of the typed array:21,19,65,21,14,66,87,55 Result:undefined
相關用法
- JavaScript TypedArray.findIndex()用法及代碼示例
- JavaScript TypedArray.fill()用法及代碼示例
- JavaScript TypedArray.filter()用法及代碼示例
- JavaScript TypedArray.forEach()用法及代碼示例
- JavaScript TypedArray.sort()用法及代碼示例
- JavaScript TypedArray.indexOf()用法及代碼示例
- JavaScript TypedArray.every()用法及代碼示例
- JavaScript TypedArray.join()用法及代碼示例
- JavaScript TypedArray.values()用法及代碼示例
- JavaScript TypedArray.toString()用法及代碼示例
- JavaScript TypedArray.of()用法及代碼示例
- JavaScript TypedArray.map()用法及代碼示例
- JavaScript TypedArray.subarray()用法及代碼示例
- JavaScript TypedArray.set()用法及代碼示例
- JavaScript TypedArray.copyWithin()用法及代碼示例
- JavaScript TypedArray.keys()用法及代碼示例
- JavaScript TypedArray.lastIndexOf()用法及代碼示例
- JavaScript TypedArray.reverse()用法及代碼示例
- JavaScript TypedArray.includes()用法及代碼示例
- JavaScript TypedArray.entries()用法及代碼示例
注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 TypedArray.find() function in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。