---
title: "isDate(_:equalTo:toGranularity:)"
framework: foundation
role: symbol
role_heading: Instance Method
path: "foundation/calendar/isdate(_:equalto:togranularity:)"
---

# isDate(_:equalTo:toGranularity:)

Returns a Boolean value indicating whether two dates are equal down to the specified component.

## Declaration

```swift
func isDate(_ date1: Date, equalTo date2: Date, toGranularity component: Calendar.Component) -> Bool
```

## Parameters

- `date1`: A date to compare.
- `date2`: A date to compare.
- `component`: A granularity to compare. For example, pass .hour to check if two dates are in the same hour.

## Return Value

Return Value true if the two dates are equal in the given component and all larger components; otherwise, false.

## See Also

### Comparing Dates

- [compare(_:to:toGranularity:)](foundation/calendar/compare(_:to:togranularity:).md)
- [isDate(_:inSameDayAs:)](foundation/calendar/isdate(_:insamedayas:).md)
- [isDateInToday(_:)](foundation/calendar/isdateintoday(_:).md)
- [isDateInTomorrow(_:)](foundation/calendar/isdateintomorrow(_:).md)
- [isDateInYesterday(_:)](foundation/calendar/isdateinyesterday(_:).md)
- [isDateInWeekend(_:)](foundation/calendar/isdateinweekend(_:).md)
