编辑代码

const arr = [1,2,3,4];
const isOk = arr.some(x => x > 5);
console.log(isOk)