Open In App

Ruby | Time saturday?() function

Improve
Improve
Like Article
Like
Save
Share
Report

The saturday?() is an inbuilt method in Ruby returns true if time represents saturday otherwise false.

Syntax: time.saturday?()

Parameters: The function accepts no parameter

Return Value: It returns true if time represents saturday otherwise false.

Example 1:




# Ruby code for saturday?() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.new(2000, 12, 23)
  
# Prints boolean value
puts a.saturday?()


Output:

true

Example 2:




# Ruby code for saturday?() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.now()
  
# Prints boolean value
puts a.saturday?()


Output:

false

Last Updated : 07 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads