El mes() es un método incorporado en Ruby que devuelve el mes del año por tiempo.
Sintaxis : hora.mes()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : Devuelve el mes del año por tiempo.
Ejemplo 1 :
# Ruby code for month() method # Include Time require 'time' # Declaring time a = Time.new(2000, 12, 23) # Prints the month of the year for the time puts a.month()
Salida :
12
Ejemplo 2 :
# Ruby code for month() method # Include Time require 'time' # Declaring time a = Time.now() # Prints the month of the year for the time puts a.month()
Salida :
8