Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This class provides methods for performing operations on SimpleDateTime objects, such as instantiating objects, for exampleThe class is used to conduct operations on SimpleDateTime objects, for example, instantiating objects.

You can also use this class to perform calculate, change formats of the date-time operations, such as calculations, formatting or converting between date-time or convert between the formats.

SimpleDateTime(dateTime)


Instantiates Use this constructor to instantiate a new SimpleDateTime object with the current or transferred date/time. Specify the date and time value in the UTC timezone.

Parameter(s):

NameTypeMandatoryDefault Value
dateTimeStringN''


Example:

Code Block
languagejs
themeEclipse
titleSimpleDateTime
linenumberstrue
const nowDateTime = new SimpleDateTime();
//
const registrationDateTime = new SimpleDateTime(record.registration_datetime);
//
const yearStartDateTime = new SimpleDateTime('2019-01-01 00:00:00');

setValue(dateTime)

This method sets the date and time of the SimpleDateTime object.

Parameter(s):

NameTypeMandatoryDefault ValuedateTimeA string in the local time zone and the internal format of yyyy-MM-dd HH:mm:ss.YNdateTimeA SimpleDateTime object,YNdateTimeA JavaScript Number. It sets the value of the object using the Number value as milliseconds past January 1, 1970, 00:00:00.YN

Return:

TypeDescriptionVoidThis method does not return a value.

You can also use the values in relative format for the SimpleDateTime constructor. All formats are available in the Relative Formats article.

Code Block
languagejs
themeEclipse
titleSimpleDateTime
linenumberstrue
const yesterdayDatetime = new SimpleDateTime('yesterday');
ss.info(yesterdayDatetime.getValue());
// Info: 2022-02-28 00:00:00  

const tomorrowDatetime

Example:

Code Block
languagejs
themeEclipse
titlesetValue
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00tomorrow');
startDateTime.setValue('2020-01-01 12ss.info(tomorrowDatetime.getValue());
// Info: 2022-03-02 00:00:00

const yesterdayWorkdayDayStart = new SimpleDateTime('yesterday 06:30');
ss.info(startDateTimeyesterdayWorkdayDayStart.getValue());  
// 2020-01-01 12:00:00

addSeconds(seconds)

This method adds a specified number of seconds to the current SimpleDateTime object.

Parameter(s):

NameTypeMandatoryDefault ValuesecondsIntegerYN

Return:

TypeDescriptionVoidThis method does not return a value.

Example:

Code Block
languagejs
themeEclipse
titleaddSeconds
linenumberstrue
const registrationDateTimeInfo: 2022-02-28 06:30:00

const fistDayOfNextMonthStart = new SimpleDateTime('first day of next month 00:00');
ss.info(fistDayOfNextMonthStart.getValue());
// Info: 2022-04-01 00:00:00

const rangeStartDatetime = new SimpleDateTime('2019-01-01 08:12:10');
registrationDateTime.addSeconds(3600);
`first day of ${monthName}`);
ss.info(registrationDateTimerangeStartDatetime .getValue()); 
// 2019-01Info: 2022-02-01 0900:12:10

addDays(days)

This method adds a specified number of days to the current SimpleDateTime object. The negative value of the parameter will subtract the days.

00:00

const YEAR = 2022;
const MONTH = 2;
const monthDatetime = new SimpleDateTime(`${YEAR}-${String(MONTH).padStart(2, '0')}-02 00:00:00`);
const monthName = monthDatetime.getMonthUTC();
ss.info(monthName);
// Info: February


addDays(days)


This method is used to change the number of days in the current SimpleDateTime object according to the local date and time. The positive value of the parameter adds days to the object, the negative value diminishes the number of daysThe method determines local date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the days using local date and time values.


Parameter(s):

NameTypeMandatoryDefault Value
daysintegerYN


Return:

TypeDescription
VoidThis method does not return a value.


Example:

Code Block
languagejs
themeEclipse
titleaddDays
linenumberstrue
const registrationDateTime = new SimpleDateTime('2019-01-01 08:12:10');
registrationDateTime.addDays(3);
ss.info(registrationDateTime.getValue()); 
//Info: 2019-01-04 08:12:10
addWeeks

addMonths(

weeks

months)


This method adds a specified is used to change the number of weeks to months in the current SimpleDateTime object according to the local date and time. The negative positive value of the parameter will subtract the weeks.The method determines local date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the weeks using local date and time valuesadds months to the object, the negative value diminishes the number of months.


Parameter(s):

NameTypeMandatoryDefault Value
weeksmonthsIntegerYN


Return:

TypeDescription
VoidThis method does not return a value.


Example:

Code Block
languagejs
themeEclipse
titleaddWeeksaddMonths
linenumberstrue
const registrationDateTime = new SimpleDateTime('2019-01-01 08:12:10');
registrationDateTime.addWeeksaddMonths(-1);
ss.info(registrationDateTime.getValue()); 
//Info: 20192018-12-01-08 08:12:10
addMonths

addSeconds(

months

seconds)


This method adds a specified is used to change the number of months to seconds in the current SimpleDateTime object . The negative according to the local date and time. The positive value of the parameter will subtract the months.The method determines local date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the months using local date and time valuesadds seconds to the object, the negative value diminishes the number of seconds.


Parameter(s):

NameTypeMandatoryDefault Value
months
secondsIntegerYN


Return:

TypeDescription
VoidThis method does not return a value.


Example:

Code Block
languagejs
themeEclipse
titleaddMonthsaddSeconds
linenumberstrue
const registrationDateTime = new SimpleDateTime('2019-01-01 08:12:10');
registrationDateTime.addMonthsaddSeconds(-13600);
ss.info(registrationDateTime.getValue()); 
//Info: 20182019-1201-01 0809:12:10
addYears

addWeeks(

years

weeks)


This method adds a specified is used to change the number of years to weeks in the current SimpleDateTime object according to the local date and time. The negative positive value of the parameter will subtract the years.The method determines local date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the years using local date and time valuesadds weeks to the object, the negative value diminishes the number of weeks.


Parameter(s):

NameTypeMandatoryDefault Value
yearsweeksIntegerYN


Return:

TypeDescription
VoidThis method does not return a value.


Example:

Code Block
languagejs
themeEclipse
titleaddYearsaddWeeks
linenumberstrue
const contractStartDateTimeregistrationDateTime = new SimpleDateTime('2019-01-01 0008:0012:0010');
contractStartDateTimeregistrationDateTime.addYearsaddWeeks(1);
ss.info(contractStartDateTimeregistrationDateTime.getValue()); 
//Info: 20202019-01-0108 0008:0012:0010
after

addYears(

dateTime

years)


This method allows to compare the date specified by the ‘dateTime‘ parameter with the current date. The method returns TRUE, if the current date is after the specified; otherwise returns FALSEis used to change the number of years in the current SimpleDateTime object according to the local date and time. The positive value of the parameter adds years to the object, the negative value diminishes the number of years.


Parameter(s):

NameTypeMandatoryDefault Value
dateTimeyearsSimpleDateTime objectIntegerYN


Return:

TypeDescription
Boolean
Void
The method returns TRUE if the current date is later than the date specified by the parameter; otherwise, returns FALSE
This method does not return a value.


Example:

Code Block
languagejs
themeEclipse
titleafteraddYears
linenumberstrue
const startDateTimecontractStartDateTime = new SimpleDateTime('20182019-01-01 0700:5800:3500');
const endDateTime = new SimpleDateTime('2019-01-01 08:00:00');
const isStartLaterThanEnd = startDateTime.after(endDateTime);
ss.info(isStartLaterThanEnd); // false
before
contractStartDateTime.addYears(1);
ss.info(contractStartDateTime.getValue());
//Info: 2020-01-01 00:00:00

after(dateTime)


This method allows to compare the date specified by the ‘dateTime‘ parameter with the current date. 

The method returns TRUE, if the current date is before after the specified; otherwise returns falseFALSE.


Parameter(s):

NameTypeMandatoryDefault Value
dateTimeSimpleDateTime objectYN


Return:

TypeDescription
BooleanThe method returns TRUE if the current date is earlier later than the date specified by the parameter; otherwise, returns FALSE.


Example:

Code Block
languagejs
themeEclipse
titlebeforeafter
linenumberstrue
const startDateTime = new SimpleDateTime('2018-01-01 07:58:35');
const endDateTime = new SimpleDateTime('2019-01-01 08:00:00');
const isStartBeforeEndisStartAfterThanEnd = startDateTime.beforeafter(endDateTime);
ss.info(isStartBeforeEndisStartAfterThanEnd); 
//Info: truefalse
compareTo

before(dateTime)


This method compares two date and time objects to determine whether they are equivalent or notmethod allows to compare the date specified by the ‘dateTime‘ parameter with the current date.

The method returns TRUE, if the current date is before the specified; otherwise returns false.


Parameter(s):

NameTypeMandatoryDefault Value
dateTimeSimpleDateTime objectYN


Return:

Object's date is after in the parameter.Object's date is before the date specified in the parameter
TypeDescription
0Dates are equal
BooleanThe method returns TRUE if the current date is earlier than 1 the date specified -1by the parameter; otherwise, returns FALSE.


Example:

Code Block
languagejs
themeEclipse
titlecompareTobefore
linenumberstrue
const firstDateTimestartDateTime = new SimpleDateTime('20192018-01-01 0807:0058:0035');
const secondDateTimeendDateTime = new SimpleDateTime('20182019-01-01 08:00:00');
const thirdDateTimeisStartBeforeEnd = new SimpleDateTime('2018-01-01 08:00:00'startDateTime.before(endDateTime);


ss.info(thirdDateTime.compareTo(secondDateTime )); // 0
ss.info(firstDateTime.compareTo(secondDateTime)); // 1
ss.info(secondDateTime.compareTo(firstDateTime)); // -1
equals(
isStartBeforeEnd);
//Info: true

compareTo(dateTime)


This method compares a datetime with an existing value if they are equal.two date and time objects to determine whether they are equal and, if not, the method defines which goes after or before the other.


Parameter(s)Parameter(s):

NameTypeMandatoryDefault Value
dateTimeSimpleDateTime object.YN


Return:

This method returns TRUE if the date are equal; otherwise, it returns FALSE
TypeDescriptionBoolean
0Dates are equal.
1Object's date is after the date specified in the parameter.
-1Object's date is before the date specified in the parameter.


Example:

Code Block
languagejs
themeEclipse
titleequalscompareTo
linenumberstrue
const firstDateTimebegin = new SimpleDateTime('2019-0104-01 08:0015:00');
const secondDateTimeend = new SimpleDateTime('20182019-0105-01 0801:00:00');
const thirdDateTime = new SimpleDateTime('2018-01-01 08:00:00');


ss.info(begin.compareTo(end));   // -1
ss.info(firstDateTimeend.equalscompareTo(secondDateTimebegin));   // false1
ss.info(thirdDateTimebegin.equalscompareTo(secondDateTimebegin)); // true0
getValue

equals(dateTime)


This method gets the date and time value in the internal format.

Return:

TypeDescriptionnull | stringThe date and time value in the internal format.

compares a datetime with an existing value to determine whether they are equal or not.


Parameter(s):

NameTypeMandatoryDefault Value
dateTimeSimpleDateTime object.YN


Return:

TypeDescription
BooleanThis method returns TRUE if the date are equal; otherwise, it returns FALSE.


Example:

Code Block
languagejs
themeEclipse
titleequals

Example:

Code Block
languagejs
themeEclipse
titlegetValue
linenumberstrue
const startDateTimefirstDateTime = new SimpleDateTime('20192018-01-01 08:00:00');
ss.info(startDateTime.getValue()); // 2019const secondDateTime = new SimpleDateTime('2018-01-01 08:0015:00

getDisplayValue()

This method gets the date and time value in the current user's display format and timezone.

Return:

TypeDescriptionStringThe date and time value.

Example:

Code Block
languagejs
themeEclipse
titlegetDisplayValue
linenumberstrue
const startDateTime ');
const thirdDateTime = new SimpleDateTime('20192018-01-01 08:00:00');

ss.info(startDateTimefirstDateTime.getDisplayValueequals(secondDateTime)) ; // 2019-01-01 11:00:00;
ss.info(thirdDateTime.equals(firstDateTime));
//Info: false
//Info: true

getDate()


This method returns the date stored saved by the SimpleDateTime object , showed in the system time zone.


Return:

TypeDescription
StringThe date in the default timezone.


Example:

Code Block
languagejs
themeEclipse
titlegetDate
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.getDate()); 
//Info: 2019-01-01
getDaysInMonthLocalTime

getDayOfMonthLocalTime()


This method returns the number day of days in the month saved by the SimpleDateTime object , showed in the current user's time zone.


Return:

TypeDescription
IntegerThe
number
day of
days
the month value.


Example:

Code Block
languagejs
themeEclipse
titlegetDaysInMonthLocalTimegetDaysofMonthsLocalTime
linenumberstrue
const startDateTimeholidayDateTime = new SimpleDateTime('2019-01-0107 08:00:00');
ss.info(startDateTimeholidayDateTime.getDaysInMonthLocalTimegetDayOfMonthLocalTime()); 
//Info: 317
getDayOfMonthLocalTime

getDayOfMonthUTC()


This method returns the day of the month saved by the SimpleDateTime object , showed in the user's UTC time zone.


Return:

TypeDescription
IntegerThe day of the month value.


Example:

Code Block
languagejs
themeEclipse
titlegetDaysofMonthsLocalTime
linenumberstrue
const holidayDateTime = new SimpleDateTime('2019-01-07 08:00:00');
ss.info(holidayDateTime.getDayOfMonthLocalTimegetDayOfMonthUTC()); 
//Info: 7
getDayOfMonthUTC

getDayOfWeekLocalTime()


This method returns the day of the month week saved by the SimpleDateTime object , showed in the UTC current user's time zone.


Return:

TypeDescription
Integer
StringThe day of
the month value.
week value. Possible values: 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat' 


Example:

Code Block
languagejs
themeEclipse
titlegetDaysofMonthsLocalTimegetDayOfWeekLocalTime
linenumberstrue
const holidayDateTime = new SimpleDateTime('2019-01-07 08:00:00');
ss.info(holidayDateTime.getDayOfMonthUTCgetDayOfWeekLocalTime()); // 7Mon
getDayOfWeekLocalTime

getDayOfWeekUTC()


This method returns the day of the week saved by the SimpleDateTime object , showed in the user's system time zone.


Return:

TypeDescription
StringThe day of week value.
Possible values: 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat' 


Example:

Code Block
languagejs
themeEclipse
titlegetDayOfWeekLocalTimegetDayOfWeekUTC
linenumberstrue
const holidayDateTime = new SimpleDateTime('2019-01-07 08:00:00');
ss.info(holidayDateTime.getDayOfWeekLocalTimegetDayOfWeekUTC()); 
//Info: Mon
getDayOfWeekUTC

getDaysInMonthLocalTime()


This method returns the day number of days in the week month saved by the SimpleDateTime object , showed in the system current user's time zone.


Return:

TypeDescription
String
IntegerThe
day
number of
week
days value.


Example:

Code Block
languagejs
themeEclipse
titlegetDayOfWeekUTCgetDaysInMonthLocalTime
linenumberstrue
const holidayDateTimestartDateTime = new SimpleDateTime('2019-01-0701 08:00:00');
ss.info(holidayDateTimestartDateTime.getDayOfWeekUTCgetDaysInMonthLocalTime()); 
//Info: Mon31

getDaysInMonthUTC()


This method returns the number of days in the month saved by the SimpleDateTime object , showed in the system time zone.


Return:

TypeDescription
IntegerThe number of days value.


Example:

Code Block
languagejs
themeEclipse
titlegetDaysInMonthUTC
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.getDaysInMonthUTC()); 
//Info: 31
isValid

getDisplayValue()


This method allows to determine if a specified value is a valid returns the date and time value in the current user's display format and timezone.


Return:

TypeDescription
Boolean
StringThe
method returns TRUE if the value is a valid
date and time
; otherwise, it returns
value.


Example:

Code Block
languagejs
themeEclipse
titleisValidgetDisplayValue
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.setValue("2011-aagetDisplayValue()); // current user's timezone is Europe/Moscow
//Info: 2019-01-01 0011:00:00");
ss.info(startDateTime.isValid());  // false

getErrorMsg()


This method gets returns the error message if the SimpleDateTime object was incorrect.


Return:

TypeDescription
StringThe error message.


Example:

Code Block
languagejs
themeEclipse
titlegetErrorMsg
linenumberstrue
const startDateTime = new SimpleDateTime('2019-zz-01 08:00:00');
ss.infoerror(startDateTime.getErrorMsg()); 
//Error: DateTimeZone::getOffset() expects parameter 1 to be DateTimeInterface, null given

getLocalDate()


This method returns the date stored saved by the SimpleDateTime object , showed in the current user's time zone.


Return:

TypeDescription
StringThe date in the user's time zone.


Example:

Code Block
languagejs
themeEclipse
titlegetLocalDate
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.getLocalDate()); 
//Info: 2019-01-01

getLocalTime()


This method returns the time saved in a SimpleDateTime object that shows the time in the in the current user's time zone .


Return:

TypeDescription
SimpleDateTimeThe time in the user's time zone.


Example:

Code Block
languagejs
themeEclipse
titlegetLocalTime
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
const time = startDateTime.getLocalTime();
ss.info( "My local time is " + time.getByFormat('h:mi:s')); 
//Info: My local time is 02:0100:00

getMonthLocalTime()


This method returns the month saved by SimpleDateTime object , showed in the current user's time zone.


Return:

TypeDescription
StringThe value of the month.


Example:

Code Block
languagejs
themeEclipse
titlegetMonthLocalTime
linenumberstrue
const startDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(startDateTime.getMonthLocalTime()); 
//Info: January

getMonthUTC()


This method returns the month saved by SimpleDateTime object , showed in the system time zone.


Return:

TypeDescription
StringThe value of the month.


Example:

Code Block
languagejs
themeEclipse
titlegetMonthUTC
linenumberstrue
const startDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(startDateTime.getMonthUTC()); 
//Info: December

getNumericValue()


This method gets returns the Unix timestamp, which stores the amount of milliseconds seconds since January 1, 1970, 00:00:00.


Return:

TypeDescription
IntegerThe Unix timestamp value.


Example:

Code Block
languagejs
themeEclipse
titlegetNumericValue
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.getNumericValue()); 
//Info: 1546329600

getTime()


This method returns a SimpleDateTime object that shows the piece of time of the SimpleDateTime object.


Return:

TypeDescription
SimpleDateTimeThe Unix duration stamp.


Example:

Code Block
languagejs
themeEclipse
titlegetTime
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
const time = startDateTime.getTime();
ss.info(time.getByFormat('h:mi:s')); 
//Info: 11:01:00
getWeekOfYearLocalTime

getValue()


This method returns the number of the week saved by the SimpleDateTime object, showed in the user's time-zonedate and time value in the internal format.


Return:

TypeDescription
Integer
null | stringThe
number of the current week
date and time value in the internal format.


Example:

Code Block
languagejs
themeEclipse
titlegetWeekOfYearLocalTimegetValue
linenumberstrue
const startDateTime = new SimpleDateTime('2019-1201-3101 2308:4500:00');
ss.info(startDateTime.getWeekOfYearLocalTimegetValue()); // 1
getWeekOfYearUTC
 2019-01-01 08:00:00

getWeekOfYearLocalTime()


This method returns the number of the week saved week's number saved by the SimpleDateTime object , showed in the system current user's time - zone.


Return:

TypeDescription
IntegerThe number of the current week.


Example:

Code Block
languagejs
themeEclipse
titlegetWeekOfYearUTCgetWeekOfYearLocalTime
linenumberstrue
const startDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(startDateTime.getWeekOfYearUTCgetWeekOfYearLocalTime()); 
//Info: 1
getYearLocalTime

getWeekOfYearUTC()


This method returns the year number of the week saved by the SimpleDateTime object , showed in the user's system time zone.


Return:

TypeDescription
Integer
Four-digit year value
The number of the current week.


Example:

Code Block
languagejs
themeEclipse
titlegetYearLocalTimegetWeekOfYearUTC
linenumberstrue
const holidayDateTimestartDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(holidayDateTimestartDateTime.getYearLocalTimegetWeekOfYearUTC()); 
//Info: 20201
getYearUTC

getYearLocalTime()


This method returns the year saved by the SimpleDateTime object , showed in the system current user's time zone.


Return:

TypeDescription
IntegerFour-digit year value.


Example:

Code Block
languagejs
themeEclipse
titlegetYearUTCgetYearLocalTime
linenumberstrue
const holidayDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(holidayDateTime.getYearUTCgetYearLocalTime()); 
//Info: 20192020
subtract

getYearUTC(

first, second

)


This method gets the duration between to SimpleDateTime values. Also, it can subtract the amount of time from the current SimpleDateTime object.

Parameter(s):

NameTypeMandatoryDefault Valuefirst

SimpleDateTime Object

YNfirst

SimpleTime Object

YNfirst

Number (milliseconds)

YNsecondSimpleDateTime ObjectNNULLsecondSimpleTime ObjectNNULLsecondNumber (milliseconds)NNULL

returns the year saved by the SimpleDateTime object in the system time zone.


Return:

TypeDescription
IntegerFour-digit year value.


Example:

Code Block
languagejs
themeEclipse
titlegetYearUTC
linenumberstrue
const holidayDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(holidayDateTime.getYearUTC()); 
//Info: 2019

isValid()


This method allows to determine if a specified value is a valid date and time.


Return:

TypeDescription
BooleanThe method returns TRUE if the value is a valid date and time; otherwise, it returns .


Example:

Code Block
languagejs
themeEclipse
titleisValid
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
startDateTime.setValue('2011-aa-01 00:00:00');
ss.info(startDateTime.isValid());
//Info: false

setValue(dateTime)


This method is intended to define the date and time value within the SimpleDateTime object.


Parameter(s):

NameTypeMandatoryDefault Value
dateTimeA string in the UTC timezone and the internal format of YYYY-MM-DD hh:mm:ss.YN
dateTimeA SimpleDateTime object.YN
dateTimeA JavaScript Number. It sets the value of the object using the Number value as milliseconds past January 1, 1970, 00:00:00.YN


Return:

TypeDescription
VoidThis method does not return a value.


Example:

Code Block
languagejs
themeEclipse
titlesetValue
linenumberstrue
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
startDateTime.setValue('2020-01-01 12:00:00');
ss.info(startDateTime.getValue());
//Info: 2020-01-01 12:00:00

subtract(first, second)


This method returns the amount of time between two SimpleDateTime values. Also, it can subtract the amount of time from the current SimpleDateTime object.

Note

Displaying of the final value using the getDisplayValue() method returns it considering the current user' timezone, unlike the getValue() method. It returns data only in UTC timezone.


Parameter(s):

NameTypeMandatoryDefault Value
first

SimpleDateTime Object

YN
secondSimpleDateTime ObjectNNULL


Return:

Type
SimpleDuration object


Example:

Code Block
languagejs
themeEclipse
titlesubtract #1
linenumberstrue
const startDatetime = new SimpleDateTime('2019-11-08 20:00:00');
const endDatetime = new SimpleDateTime('2019-11-08 20:06:28');
const diffDuration = new SimpleDateTime().subtract(startDatetime, endDatetime); 
ss.info(diffDuration.getDurationSeconds());
// Info: 388

Same example without using of the subtract:

Code Block
languagejs
themeEclipse
linenumberstrue
const startDatetime = new SimpleDateTime('2019-11-08 20:00:00');
const endDatetime = new SimpleDateTime('2019-11-08 20:06:28');
const diffSeconds = endDatetime.getNumericValue() - startDatetime.getNumericValue(); 
ss.info(diffSeconds);
// Info: 388


Code Block
languagejs
themeEclipse
titlesubtract #2
linenumberstrue
const datetime = new SimpleDateTime('2020-08-28 09:00:00');
datetime.subtract(3600);
ss.info(datetime.getValue());
//Info: 2020-08-28 08:00:00

Same example without using of the subtract

Return:

TypeSimpleDuration objectExample

:

Code Block
languagejs
themeEclipse
titlesubtract #2
linenumberstrue
const startDateTimedatetime = new SimpleDateTime("2019-01-01 08:00:00");
const periodTime = new SimpleTime();
periodTime.setValue("00:00:20");
startDateTime.subtract(periodTime);
const afterSutractDateTime = startDateTime.getTime();
ss.info(afterSutractDateTime.getByFormat('h:m:s')); // 01:12:40('2020-08-28 09:00:00');
datetime.addSeconds(-3600);
ss.info(datetime.getValue());
//Info: 2020-08-28 08:00:00


Table of Contents
absoluteUrltrueclassfixedPosition