time.Time.Month() 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.Month() function in Go language is used to find the month of the year as provided by t. 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) Month() Month Here, "t" is the stated time. Return value: It returns the month of the year as provided by "t". Example 1: C // Golang program to illustrate the usage of // Time.Month() 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(2019, 6, 5, 11, 51, 04, 0, time.UTC) // Calling Month method month := t.Month() // Prints month as specified fmt.Printf("The stated month of the"+ " year specified is: %v\n", month) } Output: The stated month of the year specified is: June Example 2: C // Golang program to illustrate the usage of // Time.Month() 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(2019, 23, 5, 11, 51, 04, 0, time.UTC) // Calling Month method month := t.Month() // Prints month as specified fmt.Printf("The stated month of the "+ "year specified is: %v\n", month) } Output: The stated month of the year specified is: November Here, the month stated in the above code in an integer is out of usual range but it is normalized while conversion. Comment More infoAdvertise with us Next Article time.Time.Month() Function in Golang With Examples N nidhi1352singh Follow Improve Article Tags : Go Language GoLang-time Similar Reads time.Time.Minute() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Minute() function in Go language is used to find the minute offset within the stated hour that is provided by "t" and the range is [0, 59]. Moreover, this function is defined under the time package 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 time.Month.String() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Month.String() function in Go language is used to find the English name of the month. Moreover, this function is defined under the time package. Here, you need to import the "time" package in order to u 2 min read time.Time.Round() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Round() function in Go language is used to find the output of rounding the stated time "t" to the closest multiple of the given duration "d" from the zero time. And the behavior of rounding for mid 2 min read time.Time.Second() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Second() function in Go language is used to find the second offset within the minute as provided by "t" and the range is [0, 59]. Moreover, this function is defined under the time package. Here, yo 2 min read Like