Answers for "print current year in ruby"

1

get current year in ruby

# Using the Time class
current_year = Time.new.year
current_year = Time.now.year

# Using the Date class
current_year = Date.today.year

# Using the DateTime class
current_year = DateTime.now.year
Posted by: Guest on March-02-2021

Browse Popular Code Answers by Language