iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 26
1
自我挑戰組

JavaScript Array x 學習筆記系列 第 26

[Day 26 | Array.prototype.includes () ]

  • 分享至 

  • xImage
  •  

週六補班日 ~ 鐵人還是要 keep going ~~

array.includes()

array.includes() 是陣列方法內查找類裡 會回傳布林值 的方法

可以在陣列(array)中找尋找指定的資料

符合即回傳 true , 不符合則回傳 false


Syntax

array.includes(searchElement, start)

Example

看看如何應用 array.includes()

const num = [10, 62, 23, 90, 83];

console.log(num.includes(23));
// expected output: true

const pets = ['cat', 'dog', 'bat','wolf','monkey'];
//				0	   1	  2	    3		4

console.log(pets.includes('bat')); 
// 查找 pets 裡,是否有完全符合 'bat'的字串 result:true

console.log(pets.includes('bat', 3))
// 查找 pets 裡,是否有完全符合'bat'的字串,從索引3開始 result:false

console.log(pets.includes('at'));
// expected output: false

參考來源:https://www.geeksforgeeks.org/javascript-array-includes-method/


上一篇
[Day 25 | Array.prototype.some () ]
下一篇
[Day 27 | Array.isArray () ]
系列文
JavaScript Array x 學習筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言