Open In App

Ruby | Time wday function

Last Updated : 07 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

Time#wday() is a Time class method which returns the integer representing the day of the week, 0..6, with Sunday == 0.

Syntax: Time.wday()

Parameter: Time values

Return: integer representing the day of the week, 0..6, with Sunday == 0.

Example #1 :




# Ruby code for Time.wday() method
  
# loading library
require 'time'
  
# declaring time 
a = Time.new(2019)
  
# declaring time
b = Time.new(2019, 10)
  
# declaring time
c = Time.new(2019, 12, 31)
  
# Time 
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"
  
  
# wday form 
puts "Time a wday form : #{a.wday}\n\n"
puts "Time b wday form : #{b.wday}\n\n"
puts "Time c wday form : #{c.wday}\n\n"


Output :

Time a : 2019-01-01 00:00:00 +0000

Time b : 2019-10-01 00:00:00 +0000

Time c : 2019-12-31 00:00:00 +0000



Time a wday form : 2

Time b wday form : 2

Time c wday form : 2

Example #2 :




# Ruby code for Time.wday() method
  
# loading library
require 'time'
  
# declaring time 
a = Time.now
  
# declaring time
b = Time.new(1000, 10, 10)
  
# declaring time
c = Time.new(2020, 12)
  
# Time 
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"
  
  
# wday form 
puts "Time a wday form : #{a.wday}\n\n"
puts "Time b wday form : #{b.wday}\n\n"
puts "Time c wday form : #{c.wday}\n\n"


Output :

Time a : 2019-08-27 09:34:07 +0000

Time b : 1000-10-10 00:00:00 +0000

Time c : 2020-12-01 00:00:00 +0000



Time a wday form : 2

Time b wday form : 5

Time c wday form : 2



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

Similar Reads