Search methods answer slightly different questions. This lesson pairs find() with includes() so learners practice both finding a matching item and checking simple membership.
const prices = [15, 40, 75, 20];
const firstLargePrice = prices.find((price) => price > 50);
const hasForty = prices.includes(40);
Use find() when you want the matching value itself.