Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 302 Bytes

DoubleNegative.md

File metadata and controls

11 lines (6 loc) · 302 Bytes

Pattern: Use of !!

Issue: -

Description

There is no point in using a double negative, it is always positive. For instance !!x can always be simplified to x.

Further Reading