谷歌闭包是否有一个包含函数,我可以在其中指定比较函数?
我有一个 DateObjects 和 DateRange-Objects 数组以及一个 DateObject。
我想知道这个单个日期是否在 DateObjects 数组中或在一个 DateRange-Object 的范围内。
goog.array.contains(arr, obj)
几乎是我想要的,但我想要 goog.date.isSameDay(date, opt_now)
函数进行比较。
Google 闭包是否有一个包含函数,我可以在其中指定比较函数?
I have an array of DateObjects and DateRange-Objects and a single DateObject.
I would like to know if this single Date is in the array of DateObjects or in the range of one DateRange-Object.
goog.array.contains(arr, obj)
is almost what I want, but I would like the goog.date.isSameDay(date, opt_now)
function to compare.
Has google closure a contains-function where I can specify the comparing function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
find
/findIndex
可能就是您要查找的内容。像这样的东西:find
/findIndex
might be what you're looking for. Something like: