```go now := time.Now() tomorrow := time.Now().AddDate(0, 0, 1) deltaSeconds := tomorrow.Sub(now).Seconds() fmt.Print(deltaSeconds) // 86400 ``` <button class="playground"><a href="https://go.dev/play/p/vZrQLCs3Oyy">Playground</a></button>