How to get current day in golang?

Hi Friends 👋,

Welcome To aGuideHub! ❤️

Today, we are going to learn how to get the current day number and print it in a golang console, here we will use the time package to get the day.

Basically, we will use the time.Now() method to get the current date, after that we use the Day() method to get the current day.

So, let’s start coding…

package main
import (
  "fmt"
  "time"
)

func main() {
  currentDay := time.Now().Day();
	fmt.Print(currentDay)
}

When you run the above code you will get the current day in your golang console, let’s check the output.

get, current day, golang

Try it yourself

All the best 👍

Premium Content

You can get all the below premium content directly in your mail when you subscribe us

Books

Interview Questions

Soon You will get CSS, JavaScript, React Js, and TypeScript So Subscribe to it.

Portfolio Template

View | Get Source Code

Cheat Sheets

Cheat Sheets Books are basically Important useful notes which we use in our day-to-day life.

Related Posts