如何缩短这个常见模式?
在我们的代码库中,我们经常遇到这种模式:
(_.isNil(x)) ? something(x) : null;
如果某个东西是对象上的方法,那么它的简短版本将是:
x?.something()
上面的方法是否有一个普遍接受的快捷方式?也许是 lodash 本身或其他库提供的东西? 谢谢
In our codebase we often encounter this pattern:
(_.isNil(x)) ? something(x) : null;
If something was a method on the object then the short version of it would be:
x?.something()
Is there a commonly accepted shortcut to the above? Perhaps something provided by lodash itself or some other library?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论