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 objectsThe 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.
addDaysLocalTimeSimpleDateTime(
daysdateTime)
Adds a specified number of days to the current SimpleDateTime object. The negative value of the parameter will subtract the days.
The method determines local date and time equivalent to the value saved by the GlideDateTime object, then adds or subtracts the days using local date and time valuesUse 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):
Name | Type |
---|---|
days | Integer |
Return:
Mandatory | Default Value | ||
---|---|---|---|
dateTime | String | N | '' |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const nowDateTime |
Example:
Code Block | ||||
---|---|---|---|---|
| ||||
var simple_date_time = new SimpleDateTime("2019-01-01 08:00:00"); simple_date_time.addDaysLocalTime(-1) ss.info(simple_date_time.getValue()); // 2018-12-31 |
addDaysUTC(days)
Adds a specified number of days to the current SimpleDateTime object. The negative value of the parameter will subtract the days.
The method determines UTC date and time equivalent to the value saved by the GlideDateTime object, then adds or subtracts the days using UTC date and time values.
Parameter(s):
Return:
//
const registrationDateTime = new SimpleDateTime(record.registration_datetime);
//
const yearStartDateTime = new SimpleDateTime('2019-01-01 00:00:00'); |
You can also use the values in relative format for the SimpleDateTime constructor. All formats are available in the Relative Formats article.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const yesterdayDatetime |
Example:
Code Block | ||||
---|---|---|---|---|
| ||||
var simple_date_time = new SimpleDateTime("2019-01-01 08:00:00"'yesterday'); simple_date_time.addDaysUTC(-1)ss.info(yesterdayDatetime.getValue()); // Info: 2022-02-28 00:00:00 const tomorrowDatetime = new SimpleDateTime('tomorrow'); ss.info(simple_date_timetomorrowDatetime.getValue()); // Info: 20182022-1203-3102 0800:00:00 |
addMonthsLocalTime(months)
Adds a specified number of months to the current SimpleDateTime object. The negative value of the parameter will subtract the months.
The method determines local date and time equivalent to the value saved by the GlideDateTime object, then adds or subtracts the months using local date and time values.
Parameter(s):
Return:
Example:
Code Block | ||||
---|---|---|---|---|
| ||||
var simple_date_time const yesterdayWorkdayDayStart = new SimpleDateTime('yesterday 06:30'); ss.info(yesterdayWorkdayDayStart.getValue()); // Info: 2022-02-28 06:30:00 const fistDayOfNextMonthStart = new SimpleDateTime("2019-01-01 08:'first day of next month 00:00"'); simple_date_time.addMonthsLocalTime(1) ss.info(simple_date_timefistDayOfNextMonthStart.getValue()); // 2019-02-01 |
addMonthsUTC(months)
Adds a specified number of months to the current SimpleDateTime object. The negative value of the parameter will subtract the months.
The method determines UTC date and time equivalent to the value saved by the GlideDateTime object, then adds or subtracts the months using UTC date and time values.
Parameter(s):
Return:
Example:
Code Block | ||||
---|---|---|---|---|
| ||||
var simple_date_timeInfo: 2022-04-01 00:00:00 const rangeStartDatetime = new SimpleDateTime(`first day of ${monthName}`); ss.info(rangeStartDatetime .getValue()); // Info: 2022-02-01 00:00:00 const YEAR = 2022; const MONTH = 2; const monthDatetime = new SimpleDateTime("2019-01-01 08:00:00"); simple_date_time.addMonthsUTC(-1)`${YEAR}-${String(MONTH).padStart(2, '0')}-02 00:00:00`); const monthName = monthDatetime.getMonthUTC(); ss.info(simple_date_time.getValue()monthName); // 2018-12-01 08:00:00 |
addSeconds(seconds)
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 daysAdd a specified number of seconds to the current SimpleDateTime object.
Parameter(s):
Name | Type | seconds | Mandatory | Default Value | |
---|---|---|---|---|---|
days | integer | Y | N | Integer
Return:
Type | Description |
---|---|
Void | This method does not return a value. |
Example:
Code Block | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
const registrationDateTimevar simple_date_time = new SimpleDateTime("'2019-01-01 08:0012:00"10'); simple_date_time.addSeconds(3600registrationDateTime.addDays(3); ss.info(simple_date_timeregistrationDateTime.getValue()); //Info: 2019-01-0104 0908:0012:0010 |
addMonths(
weeksmonths)
Adds a specified This method 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 GlideDateTime 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):
Name | Type | weeksMandatory | integerDefault Value |
---|
Return:
months | Integer | Y | N |
Return:
Type | Description |
---|---|
Void | This method does not return a value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
var simple_date_timeconst registrationDateTime = new SimpleDateTime("'2019-01-01 08:0012:00"10'); simple_date_time.addWeeksLocalTime(2)registrationDateTime.addMonths(-1); ss.info(simple_date_timeregistrationDateTime.getValue()); //Info: 20192018-12-01-15 |
addWeeksUTC(weeks)
08:12:10 |
addSeconds(seconds)
This method is used to change the number of seconds in Adds a specified number of weeks to 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 UTC date and time equivalent to the value saved by the GlideDateTime object, then adds or subtracts the weeks using UTC date and time valuesadds seconds to the object, the negative value diminishes the number of seconds.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|---|---|---|
weeksseconds | Integer | Y | N |
Return:
Type | Description |
---|---|
Void | This method does not return a value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
var simple_date_timeconst registrationDateTime = new SimpleDateTime("'2019-01-01 08:0012:00"10'); simple_date_time.addWeeksUTC(-1)registrationDateTime.addSeconds(3600); ss.info(simple_date_timeregistrationDateTime.getValue()); //Info: 20182019-1201-2501 0809:0012:0010 |
addWeeks(
yearsweeks)
Adds a specified This method 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 GlideDateTime 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):
Name | Type | Mandatory | Default Value |
---|---|---|---|
Yearsweeks | Integer | Y | N |
Return:
Type | Description |
---|---|
Void | This method does not return a value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
var simple_date_timeconst registrationDateTime = new SimpleDateTime("'2019-01-01 08:0012:00"10'); simple_date_time.addYearsLocalTimeregistrationDateTime.addWeeks(1); ss.info(simple_date_timeregistrationDateTime.getValue()); //Info: 20202019-01-01 |
08 08:12:10 |
addYears(years)
Adds a specified This method is used to change the number of years to 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 UTC date and time equivalent to the value saved by the GlideDateTime object, then adds or subtracts the years using UTC date and time valuesadds years to the object, the negative value diminishes the number of years.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|---|---|---|
Yearsyears | Integer | Y | N |
Return:
Type | Description |
---|---|
Void | This method does not return a value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
var simple_date_timeconst contractStartDateTime = new SimpleDateTime("'2019-01-01 0800:00:00"'); simple_date_time.addYearsLocalTimecontractStartDateTime.addYears(1); ss.info(simple_date_timecontractStartDateTime.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 after the specified; otherwise returns falseFALSE.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|---|---|---|
dateTime | SimpleDateTime object | Y | N |
Return:
Type | Description |
---|---|
Boolean |
The method returns TRUE if the current date is later than the date specified by the parameter; otherwise, returns FALSE. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
var first_simple_date_timeconst startDateTime = new SimpleDateTime("2019'2018-01-01 0807:0058:00"35'); var second_simple_date_timeconst endDateTime = new SimpleDateTime("2018'2019-01-01 08:00:00"'); letconst resultisStartAfterThanEnd = first_simple_date_timestartDateTime.after(second_simple_date_timeendDateTime); ss.info(resultisStartAfterThanEnd) ; //Info: truefalse |
before(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 the specified; otherwise returns false.
Parameter(s):
the specified; otherwise returns false.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|---|---|---|
dateTime | SimpleDateTime object | Y | N |
Return:
Type | Description |
---|---|
Boolean | The method returns TRUE if the current date is earlier than the date specified by the parameter; otherwise, returns FALSE. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2018-01-01 07:58:35');
const endDateTime = new SimpleDateTime('2019-01-01 08:00:00');
const isStartBeforeEnd = startDateTime.before(endDateTime);
ss.info(isStartBeforeEnd);
//Info: true |
compareTo(dateTime)
This method compares 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):
Name | Type | Mandatory | Default Value |
---|---|---|---|
dateTime | SimpleDateTime object | Y | N |
Return:
Type | Description |
---|---|
0 | Dates are equal. |
1 | Object's date is after the date specified in the parameter. |
-1 | Object's date is before the date specified in the parameter. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const begin = new SimpleDateTime('2019-04-01 08:15:00');
const end = new SimpleDateTime('2019-05-01 01:00:00');
ss.info(begin.compareTo(end)); // -1
ss.info(end.compareTo(begin)); // 1
ss.info(begin.compareTo(begin)); // 0 |
equals(dateTime)
This method compares a datetime with an existing value to determine whether they are equal or not.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|---|---|---|
dateTime | SimpleDateTime object. | Y | N |
Return:
Type | Description |
---|---|
Boolean | This method returns TRUE if the date are equal; otherwise, it returns FALSE. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const firstDateTime = new SimpleDateTime('2018-01-01 08:00:00');
const secondDateTime = new SimpleDateTime('2018-01-01 08:15:00');
const thirdDateTime = new SimpleDateTime('2018-01-01 08:00:00');
ss.info(firstDateTime.equals(secondDateTime));
ss.info(thirdDateTime.equals(firstDateTime));
//Info: false
//Info: true |
getDate()
This method returns the date saved by the SimpleDateTime object in the system time zone.
Return:
Type | Description |
---|---|
String | The date in the default timezone. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.getDate());
//Info: 2019-01-01 |
getDayOfMonthLocalTime()
This method returns the day of the month saved by the SimpleDateTime object in the current user's time zone.
Return:
Type | Description |
---|---|
Integer | The day of the month value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const holidayDateTime = new SimpleDateTime('2019-01-07 08:00:00');
ss.info(holidayDateTime.getDayOfMonthLocalTime());
//Info: 7 |
getDayOfMonthUTC()
This method returns the day of the month saved by the SimpleDateTime object in the UTC time zone.
Return:
Type | Description |
---|---|
Integer | The day of the month value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const holidayDateTime = new SimpleDateTime('2019-01-07 08:00:00');
ss.info(holidayDateTime.getDayOfMonthUTC());
//Info: 7 |
getDayOfWeekLocalTime()
This method returns the day of the week saved by the SimpleDateTime object in the current user's time zone.
Return:
Type | Description |
---|---|
String | The day of week value. Possible values: 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat' |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const holidayDateTime = new SimpleDateTime('2019-01-07 08:00:00');
ss.info(holidayDateTime.getDayOfWeekLocalTime()); // Mon |
getDayOfWeekUTC()
This method returns the day of the week saved by the SimpleDateTime object in the system time zone.
Return:
Type | Description |
---|---|
String | The day of week value. Possible values: 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat' |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const holidayDateTime = new SimpleDateTime('2019-01-07 08:00:00');
ss.info(holidayDateTime.getDayOfWeekUTC());
//Info: Mon |
getDaysInMonthLocalTime()
This method returns the number of days in the month saved by the SimpleDateTime object in the current user's time zone.
Return:
Type | Description |
---|---|
Integer | The number of days value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.getDaysInMonthLocalTime());
//Info: 31 |
getDaysInMonthUTC()
This method returns the number of days in the month saved by the SimpleDateTime object in the system time zone.
Return:
Type | Description |
---|---|
Integer | The number of days value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.getDaysInMonthUTC());
//Info: 31 |
getDisplayValue()
This method returns the date and time value in the current user's display format and timezone.
Return:
Type | Description |
---|---|
String | The date and time value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.getDisplayValue()); // current user's timezone is Europe/Moscow
//Info: 2019-01-01 11:00:00 |
getErrorMsg()
This method returns the error message if the SimpleDateTime object was incorrect.
Return:
Type | Description |
---|---|
String | The error message. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-zz-01 08:00:00');
ss.error(startDateTime.getErrorMsg());
//Error: DateTimeZone::getOffset() expects parameter 1 to be DateTimeInterface, null given |
getLocalDate()
This method returns the date saved by the SimpleDateTime object in the current user's time zone.
Return:
Type | Description |
---|---|
String | The date in the user's time zone. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
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 in the current user's time zone .
Return:
Type | Description |
---|---|
SimpleDateTime | The time in the user's time zone. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
const time = startDateTime.getLocalTime();
ss.info( "My local time is " + time.getByFormat('h:i:s'));
//Info: My local time is 02:00:00 |
getMonthLocalTime()
This method returns the month saved by SimpleDateTime object in the current user's time zone.
Return:
Type | Description |
---|---|
String | The value of the month. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
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 in the system time zone.
Return:
Type | Description |
---|---|
String | The value of the month. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(startDateTime.getMonthUTC());
//Info: December |
getNumericValue()
This method returns the Unix timestamp, which stores the amount of seconds since January 1, 1970, 00:00:00.
Return:
Type | Description |
---|---|
Integer | The Unix timestamp value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
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:
Type | Description |
---|---|
SimpleDateTime | The Unix duration stamp. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
const time = startDateTime.getTime();
ss.info(time.getByFormat('h:i:s'));
//Info: 11:01:00 |
getValue()
This method returns the date and time value in the internal format.
Return:
Type | Description |
---|---|
null | string | The date and time value in the internal format. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-01-01 08:00:00');
ss.info(startDateTime.getValue()); // 2019-01-01 08:00:00 |
getWeekOfYearLocalTime()
This method returns the week's number saved by the SimpleDateTime object in the current user's time zone.
Return:
Type | Description |
---|---|
Integer | The number of the current week. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(startDateTime.getWeekOfYearLocalTime());
//Info: 1 |
getWeekOfYearUTC()
This method returns the number of the week saved by the SimpleDateTime object in the system time zone.
Return:
Type | Description |
---|---|
Integer | The number of the current week. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const startDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(startDateTime.getWeekOfYearUTC());
//Info: 1 |
getYearLocalTime()
This method returns the year saved by the SimpleDateTime object in the current user's time zone.
Return:
Type | Description |
---|---|
Integer | Four-digit year value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
const holidayDateTime = new SimpleDateTime('2019-12-31 23:45:00');
ss.info(holidayDateTime.getYearLocalTime());
//Info: 2020 |
getYearUTC()
This method returns the year saved by the SimpleDateTime object in the system time zone.
Return:
Type | Description |
---|---|
Integer | Four-digit year value. |
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
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:
Type | Description |
---|---|
Boolean |
The method returns TRUE if the value is a valid date and time; otherwise, it returns . |
Example:
Code Block | |||||||||
---|---|---|---|---|---|---|---|---|---|
| |||||||||
const startDateTimevar first_simple_date_time = new SimpleDateTime("2019-01-01 08:00:00"); var second_simple_date_time = new SimpleDateTime("2018'2019-01-01 08:00:00"'); let result = first_simple_date_time.before(second_simple_date_timestartDateTime.setValue('2011-aa-01 00:00:00'); ss.info(startDateTime.isValid(result)) ; //Info: false |
setValue(dateTime)
Compares two date and time objects to determine whether they are equivalent or notThis method is intended to define the date and time value within the SimpleDateTime object.
Parameter(s):
Name |
---|
Type | Mandatory | Default Value | |
---|---|---|---|
dateTime | A string in the UTC timezone and the internal format of YYYY-MM-DD hh:mm:ss. | Y | N |
dateTime | A SimpleDateTime object. | Y | N |
dateTime | A JavaScript Number. It sets the value of the object using the Number value as milliseconds past January 1, 1970, 00:00:00. | Y | N |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block | |||||||||
---|---|---|---|---|---|---|---|---|---|
| |||||||||
const startDateTimevar first_simple_date_time = new SimpleDateTime("2019-01-01 08:00:00"); var second_simple_date_time = new SimpleDateTime("2018'2019-01-01 08:00:00"'); var third_simple_date_time = new SimpleDateTime("2018-01-01 08:00:00"); ss.info( first_simple_date_time.compareTo(second_simple_date_time) ); // 1startDateTime.setValue('2020-01-01 12:00:00'); ss.info( second_simple_date_time.compareTo(first_simple_date_time) ); // -1 ss.info( third_simple_date_time.compareTo(second_simple_date_time ) ); // 0 |
equals(dateTime)
Compares a datetime with an existing value if they are equalstartDateTime.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):
Name | Type | Mandatory | Default Value |
---|
first | SimpleDateTime |
Return:
Object | Y | N | |
second | SimpleDateTime Object | N | NULL |
Return:
Type | |
---|---|
SimpleDuration object | |
Type | Description |
Boolean | Returns true if the date are equal; otherwise returns false. |
Example:
Code Block | |||||||||
---|---|---|---|---|---|---|---|---|---|
| |||||||||
const startDatetimevar first_simple_date_time = new SimpleDateTime("2019-01-01 08:00:00"); var second_simple_date_time = new SimpleDateTime("2018'2019-0111-0108 0820:00:00"'); var third_simple_date_timeconst endDatetime = new SimpleDateTime("2018'2019-0111-0108 0820:0006:00"28'); ss.info( first_simple_date_time.equals(second_simple_date_time) ); // 0const diffDuration = new SimpleDateTime().subtract(startDatetime, endDatetime); ss.info( third_simple_date_time.equals(second_simple_date_time ) ); // 1 |
getDate()
Returns the date stored by the GlideDateTime object, showed in the system time zone.
Return:
diffDuration.getDurationSeconds());
// Info: 388 |
Same example without using of the subtract
Example:
Code Block | |||||||
---|---|---|---|---|---|---|---|
| |||||||
const startDatetime = new SimpleDateTime('2019-11-08 20:00:00'); const endDatetimevar first_simple_date_time = new SimpleDateTime("'2019-0111-0108 0820:0006:00"28'); ss.info( first_simple_date_time.getDate() ); // 2019-01-01 |
getDaysInMonthLocalTime()
Returns the number of days in the month saved by the SimpleDateTime object, showed in the user's time zone.
Return:
const diffSeconds = endDatetime.getNumericValue() - startDatetime.getNumericValue();
ss.info(diffSeconds);
// Info: 388 |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
var first_simple_date_timeconst datetime = new SimpleDateTime("2019'2020-0108-0128 0809:00:00"'); ssdatetime.info( first_simple_date_time.getDaysInMonthLocalTime() ); // 31 |
getDaysInMonthUTC()
Returns the number of days in the month saved by the SimpleDateTime object, showed in the system time zone.
Return:
subtract(3600);
ss.info(datetime.getValue());
//Info: 2020-08-28 08:00:00 |
Same example without using of the subtract
Example:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
var first_simple_date_timeconst datetime = new SimpleDateTime("2019'2020-0108-0128 0809:00:00"'); datetime.addSeconds(-3600); ss.info( first_simple_date_time.getDaysInMonthUTCdatetime.getValue() ); //Info: 2020-08-28 08:00:00 |
Table of Contents | ||
---|---|---|
|