Ruby | Time sunday?() function
The sunday?() is an inbuilt method in Ruby returns true if time represents sunday otherwise false.
Syntax: time.sunday?()
Parameters: The function accepts no parameter
Return Value: It returns true if time represents sunday otherwise false.
Example 1:
# Ruby code for sunday?() method # Include Time require 'time' # Declaring time a = Time. new (2000, 12, 23) # Prints boolean value puts a.sunday?() |
chevron_right
filter_none
Output:
false
Example 2:
# Ruby code for sunday?() method # Include Time require 'time' # Declaring time a = Time.now() # Prints boolean value puts a.sunday?() |
chevron_right
filter_none
Output:
false