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

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.

I'm working on some more Cheat Sheets book on Jquery, TypeScript, React js and for other languages. I will send it once it's completed.

Stay tuned working on React Js Cheat Sheets Book

Related Posts