How to get tomorrows date in Go

1 Answer

0 votes
package main
  
import (
    "fmt" 
    "time"
)
  
func main() {
    tomorrow := time.Now().AddDate(0, 0, +1)
     
    fmt.Println(tomorrow)
     
    year, month, day := tomorrow.Date()
    fmt.Println(year, month, day) 
    fmt.Println(year, int(month), day) 
}
 
 
 
 
/*
run:
 
2020-08-28 05:59:28.032070278 +0000 UTC
2020 August 28
2020 8 28
 
*/

 



answered Aug 26, 2020 by avibootz
edited Aug 27, 2020 by avibootz

Related questions

...