JavaScript中的TypedArray.filter()函数
filter()TypedArray的函数接受表示函数名称的字符串值,测试数组中的所有元素是否通过提供的函数实现的测试,创建一个包含所有通过测试的元素的新数组。
语法
它的语法如下
typedArray.filter(function_name)
示例
<html>
<head>
<title>JavaScript Array every Method</title>
</head>
<body>
<script type="text/javascript">
var int32View = new Int32Array([64, 89, 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.filter(testResult);
document.write("Elements that are greater than 35: "+result);
</script>
</body>
</html>输出结果
Contents of the typed array: 64,89,65,21,14,66,87,55 Elements that are greater than 35: 64,89,65,66,87,55
热门推荐
10 诗词送行祝福语大全简短
11 新房开工吉日祝福语简短
12 50多岁生日简短祝福语
13 安徽疫情祝福语简短英语
14 农民朋友发财祝福语简短
15 对生活祝福语简短精辟
16 搬家词简短祝福语朋友
17 女神结婚快乐祝福语简短
18 文学短句祝福语大全简短