How to get current year in golang?
May 11, 2022Hi Friends 👋,
Welcome To aGuideHub! ❤️
Today, we are going to learn how to get the current year and print it in a golang console, here we will use the time
package to get a year.
Basically, we will use the time.Now()
method to get the current time, after that we use Year()
method to get a current year.
So, let’s start coding…
package main
import (
"fmt"
"time"
)
func main() {
currentYear := time.Now().Year();
fmt.Print(currentYear)
}
When you run the above code you will get a current year in your golang console, let’s check the output.
All the best 👍