단순화할 수 있는 이중 부정을 보고합니다.

예:


if (!!functionCall()) {} // 이중 부정
if (!(a != b)) {} // 이중 부정

빠른 수정 적용 후:


if (functionCall()) {}
if (a == b) {}