rubtwo/app/helpers/movies_helper.rb

7 lines
116 B
Ruby
Raw Permalink Normal View History

module MoviesHelper
# Checks if a number is odd:
def oddness(count)
count.odd? ? "odd" : "even"
end
end