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