Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 312 Bytes

clarifyCalculation.md

File metadata and controls

11 lines (6 loc) · 312 Bytes

Pattern: Unclear calculation

Issue: -

Description

Suspicious calculation. Please use parentheses to clarify the code. The code a+b?c:d should be written as either (a+b)?c:d or a+(b?c:d).

Further Reading