Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,166 questions

40,722 answers

573 users

How to subtract a month to current date in Go

1 Answer

0 votes
package main
   
import (
    "fmt"
    "time"
)
   
func main() {
    tomorrow := time.Now().AddDate(0, -1, 0)
      
    fmt.Println(tomorrow)
      
    year, month, day := tomorrow.Date()
    fmt.Println(year, month, day) 
    fmt.Println(year, int(month), day) 
}
  
  
  
  
/*
run:
  
2020-07-27 08:33:19.532745029 +0000 UTC
2020 July 27
2020 7 27
  
*/

 





answered Aug 27, 2020 by avibootz

Related questions

1 answer 68 views
1 answer 85 views
1 answer 83 views
1 answer 61 views
1 answer 56 views
...