time.Time.Day() Function in Golang With Examples Last Updated : 19 Apr, 2020 Comments Improve Suggest changes Like Article Like Report 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 "time" package in order to use these functions. Syntax: func (t Time) Day() int Here, "t" is the stated time. Return Value: It returns the day of the month in which the stated "t" occurs. Example 1: C // Golang program to illustrate the usage of // Time.Day() 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 Day method dd := t.Day() // Prints day fmt.Printf("The stated day is: %v\n", dd) } Output: The stated day is: 6 Example 2: C // Golang program to illustrate the usage of // Time.Day() 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, 36, 11, 45, 04, 0, time.UTC) // Calling Day method dd := t.Day() // Prints day fmt.Printf("The stated day is: %v\n", dd) } Output: The stated day is: 5 Here, the stated day is out of usual range but it is normalized while converted. 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.Date() Function in Golang with Examples 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 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.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.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.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 time.Time.In() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The In() function in Go language is used to find a copy of the stated "t" that represents the identical time instant, but along with the copy's location data that is set to "loc" for display uses. And if "l 2 min read Like