Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 315 Bytes

duplicateExpressionTernary.md

File metadata and controls

11 lines (6 loc) · 315 Bytes

Pattern: Duplicate expression ternary

Issue: -

Description

Finding the same expression in both branches of ternary operator is suspicious as the same code is executed regardless of the condition.

Further Reading