Aller au contenu principal

DateTime():isBefore()

Checks if the current DateTime object is before another DateTime object.

Signature

isBefore(other: DateTime): boolean

Parameters

ParameterTypeDescription
otherDateTimeThe other DateTime object to compare against.

Returns

  • Type: boolean
  • true if the current DateTime is strictly before the other DateTime, false otherwise.

Examples

local date1 = DateTime(2024, 1, 5)
local date2 = DateTime(2024, 1, 10)

local result1 = date1:isBefore(date2) -- result will be true
toast(tostring(result1))

local result2 = date2:isBefore(date1) -- result will be false
toast(tostring(result2))