[1,2,3].any? { |e| e > 1 } => true
any(x > 3 for x in [1,2,3]) # False
[2, 4, 6].some((x) => x % 2 === 0);