El mday() es un método incorporado en Ruby que devuelve el día del mes por tiempo.
Sintaxis : hora.mday()
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 mday() method # Include Time require 'time' # Declaring time a = Time.new(2000, 12, 23) # Prints the day of the month for the time puts a.mday()
Salida :
23
Ejemplo 2 :
# Ruby code for mday() method # Include Time require 'time' # Declaring time a = Time.now() # Prints the day of the month for the time puts a.mday()
Salida :
27