Open In App

Ruby | Time + method

Improve
Improve
Like Article
Like
Save
Share
Report

The + is an inbuilt method in Ruby returns a time after adding given time in seconds

Syntax: time +

Parameters: The function accepts no parameter

Return Value: It returns a time after adding given time in seconds

Example 1:




# Ruby code for + method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.new(1993, 02, 24, 12, 0, 0, "+09:00")
  
# Prints time after one year 
puts a + (60*60*24*365)


Output:

1994-02-24 12:00:00 +0900

Example 2:




# Ruby code for + method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.new(1993, 02, 24, 12, 0, 0, "+09:00")
  
# Prints time 
puts a + (0)


Output:

1993-02-24 12:00:00 +0900

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