Skip to content

CAT 023

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-023 — includes? on String → char comparison

Field Value
Severity info
Confidence medium
Auto-fix

includes? on String → char comparison — Using includes? to check for a single character creates overhead. Use direct comparison or index.

Bad code

str.includes?("a")

Clone this wiki locally