The current date
today(tzone = "")
tzone | a character vector specifying which time zone you would like to find the current date of. tzone defaults to the system time zone set on your computer. |
---|
the current date as a Date object
today()#> [1] "2018-01-23"today("GMT")#> [1] "2018-01-23"today() == today("GMT") # not always true#> [1] TRUEtoday() < as.Date("2999-01-01") # TRUE (so far)#> [1] TRUE