如何重新格式化此返回语句以使用 lodash include 而不是索引?
我的 linter 抱怨索引 Of 的使用,所以我想改变它。 return applyStatuses.indexOf(app.applicationStatus.code) !== -1;
my linter is complaining about the usage of index Of so I wanted to change it.return applicableStatuses.indexOf(app.applicationStatus.code) !== -1;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用下面的代码 -
这应该像下面的示例一样工作 -
You can use below code -
This should work like below example -