将 switch 语句替换为带有布尔值的对象文字
我有这个 switch 语句,其中 a、b、c 和 d 可以为真或假,但只有其中之一为真,当其中之一为真时,它返回 X,这是一个变量。如何用对象文字替换此 switch 语句?
switch (true) {
a: return x
b: return x
c: return x
d: return x
}
I have this switch statement where a, b, c and d can be true or false, but only one of them is going to be true, and when one of them is true it returns X which is a variable. How can I replace this switch statement with an object literal?
switch (true) {
a: return x
b: return x
c: return x
d: return x
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论