time.Time.Add() 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.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 these functions. Syntax: func (t Time) Add(d Duration) Time Here, "t" is the stated time and "d" is the duration that is to be added to the time stated. Return Value: It returns the result of adding stated t and d. Example: C // Golang program to illustrate the usage of // Time.Add() function // Including main package package main // Importing fmt and time import "fmt" import "time" // Calling main func main() { // Declaring time in UTC t := time.Date(2020, 11, 9, 7, 0, 0, 0, time.UTC) // Declaring durations d1 := t.Add(time.Second * 4) d2 := t.Add(time.Minute * 2) d3 := t.Add(time.Hour * 1) d4 := t.Add(time.Hour * 22 * 7) // Prints output fmt.Printf("%v\n", t) fmt.Printf("%v\n", d1) fmt.Printf("%v\n", d2) fmt.Printf("%v\n", d3) fmt.Printf("%v", d4) } Output: 2020-11-09 07:00:00 +0000 UTC 2020-11-09 07:00:04 +0000 UTC 2020-11-09 07:02:00 +0000 UTC 2020-11-09 08:00:00 +0000 UTC 2020-11-15 17:00:00 +0000 UTC Here, the output returned is in UTC as defined above. Comment More infoAdvertise with us Next Article time.Time.Day() 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.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.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