当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript typedArray.includes()用法及代码示例


typedArray.includes() 是 JavaScript 中的内置函数,用于检查给定 typedArray 是否包含特定元素,并相应地返回 true 和 false。

用法:

typedarray.includes(Element, Index);

参数:它接受下面指定的两个参数 -

  • Element:它是在 typedArray 中搜索的元素。
  • Index:它是 typedArray 形式中搜索应开始的元素的索引。其默认值为零 (0) 并且是可选的。

返回值:如果该元素存在于给定的 typedArray 中,则返回布尔值 true,否则返回 false。

示例 1:

javascript


// Creating some typedArrays 
const A = new Uint8Array([ 1, 2, 3, 4, 5 ]); 
const B = new Uint8Array([ 5, 10, 15, 20 ]); 
const C = new Uint8Array([ 0, 2, 4, 6,, 8, 10 ]); 
const D = new Uint8Array([ 1, 3, 5, 7, 9 ]); 
  
// Calling include() function 
a = A.includes(2) 
b = B.includes(15, 1) 
c = C.includes(6) 
d = D.includes(9, 1) 
  
// Printing true or false, either the element 
// is present in the typedArray or not 
console.log(a); 
console.log(b); 
console.log(c); 
console.log(d);

输出:

true
true
true
true

示例 2:

javascript


// Creating some typedArrays 
const A = new Uint8Array([ 1, 2, 3, 4, 5 ]); 
const B = new Uint8Array([ 5, 10, 15, 20 ]); 
const C = new Uint8Array([ 0, 2, 4, 6,, 8, 10 ]); 
const D = new Uint8Array([ 1, 3, 5, 7, 9 ]); 
  
// Calling include() function 
a = A.includes(6) 
b = B.includes(21, 1) 
c = C.includes(6, 4) 
d = D.includes(0) 
  
// Printing true or false, either the element 
// is present in the typedArray or not 
console.log(a); 
console.log(b); 
console.log(c); 
console.log(d);

输出:

false
false
false
false


相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript typedArray.includes() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。