js判断一个元素是否在数组中

1.indexOf

返回包含字符串的位置,返回-1代表数组中不存在

arr.indexOf('a')

2.includes

返回true false

arr.includes('a')