📜  javascript array some - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:21.990000             🧑  作者: Mango

代码示例6
movies.some(movie => movie.year > 2015)
// Say true if in movie.year only one (or more) items are greater than 2015
// Say false if no items have the requirement (like and operator)