判断对象中是否存在键值对让回调结果为真。
object.some(callback)
data = {a: 1, b: 2} result = data.some(fn(value) { value == 2 }) // 输出:true print result