I usually comment "ifs" and write in "human language" what it means, like "checks if it's A or B".
If you find yourself doing this, it may be better to refactor so that the complex boolean logic is extracted to another method, or at least introduce a variable with a name that makes it clear what the logic means.
The problem with comments is that they (sometimes) violate the DRY (Don't Repeat Yourself) guideline. When you duplicate the logic by adding it to documentation, even comments right next to the code, you run the risk of having things fall out of date. Soon the comments may become incomplete or inaccurate.
That said, I don't mind looking at comments, even if they are a little out of date. I have run into code that looks like:
// collect data
Data data = collectData();
// analyze data
Report report = analyze(data);
// print report
report.print();
Those types of comments are absolutely worthless to everybody and I will usually delete them on sight.