Open In App

Ruby | Time day() function

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

The day() is an inbuilt method in Ruby returns the day of the month for time.

Syntax: time.day()

Parameters: The function accepts no parameter

Return Value: It returns the day of the month for time.

Example 1:




# Ruby code for day() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.new(2000, 12, 23)
  
# Prints the day of the month for the time
puts a.day()


Output:

23

Example 2:




# Ruby code for day() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.now()
  
# Prints the day of the month for the time
puts a.day()


Output:

27

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads