# Don’t comment bad code—rewrite it! - Which would you rather see? This ```java //Check to see if the employee is eligible for full benefits if ((employee.flags & HOURLY_FLAG) && (employee.age > 65)) ``` Or this? ```java if (employee.isEligibleForFullBenefits()) ```
Don’t comment bad code—rewrite it!
Or this?