Skip to content

Files

Latest commit

 

History

History
21 lines (14 loc) · 334 Bytes

unnecessary_parenthesis.md

File metadata and controls

21 lines (14 loc) · 334 Bytes

Pattern: Unnecessary parenthesis

Issue: -

Description

AVOID using parenthesis when not needed.

Example of correct code:

a = b;

Example of incorrect code:

a = (b);

Further Reading