JavaScript 中的 TypedArray.find() 函数
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
示例
如果数组不包含所需元素,此函数将返回 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
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP