赞
踩
includes()方法,在字符串中使用时,相当于indexOf(),查询成功返回true,失败返回false
- 'abc'.includes('ab') // true
-
- 'abc'.includes('d') // false
在数组中使用时,可以查询某个元素是否包含在数组中(只能查询Number,String类型的元素)
- [1 , 2, 3].includes(0) // false
-
- ['1' , '2', '3'].includes('1') // true
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。