function has(list, item) { list.forEach(v => { if (v === item) { return true } }) return false}console.info(has([1,2,3], 1))怎么让结果为true??? 查看完整描述