time.Time.Date() Function in Golang with Examples Last Updated : 19 Apr, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Date() function in Go language is used to check the year, month, and day in which the stated "t" presents itself. Moreover, this function is defined under the time package. Here, you need to import the "time" package in order to use these functions. Syntax: func (t Time) Date() (year int, month Month, day int) Here, "t" is the stated time. Return Value: It returns year, month and day of the stated "t". Example 1: C // Golang program to illustrate the usage of // Time.Before() function // Including main package package main // Importing fmt and time import "fmt" import "time" // Calling main func main() { // Declaring t in UTC t := time.Date(2020, 5, 6, 11, 45, 04, 0, time.UTC) // Calling Date method yyyy, mm, dd := t.Date() // Prints year fmt.Printf("The stated year is: %v\n", yyyy) // Prints month fmt.Printf("The stated month is: %v\n", mm) // Prints day fmt.Printf("The stated day is: %v\n", dd) } Output: The stated year is: 2020 The stated month is: May The stated day is: 6 Example 2: C // Golang program to illustrate the usage of // Time.Before() function // Including main package package main // Importing fmt and time import "fmt" import "time" // Calling main func main() { // Declaring t in UTC t := time.Date(2020, 13, 34, 00, 00, 00, 0, time.UTC) // Calling Date method yyyy, mm, dd := t.Date() // Prints year fmt.Printf("The stated year is: %v\n", yyyy) // Prints month fmt.Printf("The stated month is: %v\n", mm) // Prints day fmt.Printf("The stated day is: %v\n", dd) } Output: The stated year is: 2021 The stated month is: February The stated day is: 3 Here, the stated month and day are out of usual range but they are normalized while conversion. Comment More infoAdvertise with us Next Article time.Time.After() Function in Golang With Examples N nidhi1352singh Follow Improve Article Tags : Go Language GoLang-time Similar Reads time.Time.AddDate() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.AddDate() function in Go language is used to check the time which is equivalent to adding the stated number of years, months, and days to the given "t". For example, if the parameters of the method 3 min read time.Time.Day() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Day() function in Go language is used to check the day of the month in which the stated "t" presents itself. Moreover, this function is defined under the time package. Here, you need to import the 2 min read time.Time.After() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.After() function in Go language is used to check if the stated time instant t is after the stated u or not. Moreover, this function is defined under the time package. Here, you need to import the " 2 min read time.Time.Add() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Add() function in Go language is used to add the stated time and duration. Moreover, this function is defined under the time package. Here, you need to import the "time" package in order to use the 2 min read time.Date() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Date() function in Go language is used to find Date the Time which is equivalent to yyyy-mm-dd hh:mm:ss + nsec nanoseconds in the proper time zone in the stated location. Moreover, this function is defi 2 min read time.Time.Equal() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Equal() function in Go language is used to check if the stated times "t" and "u" represents identical time instant or not. And two times located in different locations can even be equal. Moreover, 2 min read Like