Open In App

time.Weekday() Function in Golang With Examples

Last Updated : 21 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In Go language, time packages supplies functionality for determining as well as viewing time. The Weekday() function in Go language is used to check the English name of the day. Moreover, this function is defined under the time package. Here, you need to import “time” package in order to use these functions.

Syntax:

func (d Weekday) String() string

Return value: It returns English name of the day.

Example 1:




// Golang program to illustrate the usage of
// Weekday() function
  
// Including main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Main function
func main() {
  
    // Calling Weekday method using
    // Now function
    weekday := time.Now().Weekday()
  
    // Prints the current weekday
    fmt.Println("Weekday is: ", weekday)
}


Output:

Weekday is:  Thursday

Example 2:




// Golang program to illustrate the usage of
// Weekday() function
  
// Including main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Main function
func main() {
  
    // Calling Weekday method using
    // Now function
    weekday := time.Now().Weekday()
  
    // Prints the current 
    // weekday in int form
    fmt.Println("Weekday in number is: ", int(weekday))
}


Output:

Weekday in number is:  4


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads