unicorn/prefer-logical-operator-over-ternary 风格
作用
此规则查找可简化为逻辑运算符的三元表达式。
为什么不好?
逻辑运算符比三元表达式更简洁、更简单。
示例
此规则不正确的代码示例
javascript
const foo = bar ? bar : baz;
console.log(foo ? foo : bar);
此规则正确的代码示例:const foo = bar || baz;console.log(foo ?? bar);
## References
- [Rule Source](https://github.com/oxc-project/oxc/blob/main/crates/oxc_linter/src/rules/unicorn/prefer_logical_operator_over_ternary.rs)