단순화할 수 있는 이중 부정을 보고합니다.
예:
if (!!functionCall()) {}
빠른 수정 적용 후:
if (functionCall()) {}
예:
if (!(a != b)) {}
빠른 수정 적용 후:
if (a == b) {}