El día() es un método incorporado en Ruby que devuelve el día del mes para el tiempo.
Sintaxis : hora.día()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : Devuelve el día del mes por hora.
Ejemplo 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()
Salida :
23
Ejemplo 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()
Salida :
27