Return the end of a year for the given date.
Return the end of a year for the given date. The result will be in the local timezone.
// CommonJS
var endOfYear = require('date-fns/endOfYear')
// ES 2015 import endOfYear from 'date-fns/endOfYear'
// ESM
import { endOfYear } from 'date-fns'
endOfYear(date)
| Name | Description |
|---|---|
date |
the original date |
| Description |
|---|
|
the end of a year |
| Type | Description |
|---|---|
TypeError |
1 argument required |
// The end of a year for 2 September 2014 11:55:00: const result = endOfYear(new Date(2014, 8, 2, 11, 55, 00)) //=> Wed Dec 31 2014 23:59:59.999
© 2021 Sasha Koss and Lesha Koss
Licensed under the MIT License.
https://date-fns.org/v2.29.2/docs/endOfYear