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