数组中是否包含值某个值(数组元素为基本类型)

4年以前  |  阅读数:269 次  |  编程语言:JavaScript 
console.log([1, 2, 3].includes(4)) //false
console.log([1, 2, 3].indexOf(4)) //-1 如果存在换回索引
console.log([1, 2, 3].find((item) => item === 3)) //3 如果数组中无值返回undefined
console.log([1, 2, 3].findIndex((item) => item === 3)) //2 如果数组中无值返回-1

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8