Class Index | File Index

Classes


Built-In Namespace Date

Field Summary
Field Attributes Field Name and Description
<static>  
Date.monthNames

Static field for the list of month.

Method Summary
Method Attributes Method Name and Description
 
addTime(

Adds time to a date object.

 

Function that is used to get the total calendar days of the next month.

<private> <static>  
Date.getMonthName(

Static function that gets month name.

 

Function that is used to get the total calendar days of the next month.

 

Function that is used to get calendar total calendar days of the previous month.

 

Function that is used to determine if two dates objects have the same date.

 

Function that is used to determine if two dates objects have the same date and time.

 

Function that is used to determine a date is the day after another date.

 

Function that is used to determine a date is the day before another date.

<private>  

Tells you whether it is the last day in a month or not.

<private> <static>  
Date.isLastDayInMonth(

Static function that tells you whether a date is the last day in a month or not.

Field Detail
<static> Date.monthNames

Static field for the list of month.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Method Detail
{String} addTime(

Adds time to a date object.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Parameters:
href="http://www.w3schools.com/jsref/jsref_obj_number.asp">Number time Represents the time you want to add to the date.
Returns:
{String} A new Date object with the specified time added.

getCurrentMonthTotalDays()

Function that is used to get the total calendar days of the next month.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Returns:
Number The total days in the next month.

<private> <static> {String} Date.getMonthName(

Static function that gets month name.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Parameters:
href="http://www.w3schools.com/jsref/jsref_obj_number.asp">Number index Represents the position of the month in a month array.
href="http://www.w3schools.com/jsref/jsref_obj_boolean.asp">Boolean useAbbr An optional boolean flag that governs whether the full name of the month is returned or its abbreviation.
Returns:
{String} The name of the month.

getNextMonthTotalDays()

Function that is used to get the total calendar days of the next month.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Returns:
Number The total days in the next month.

getPreviousMonthTotalDays()

Function that is used to get calendar total calendar days of the previous month.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Returns:
Number The total days in the previous month.

isDateEqualTo(The)

Function that is used to determine if two dates objects have the same date.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Parameters:
{@link Date} The
date to evaluate against this object.
Returns:
Boolean True if the date passed in is equal the date object; otherwise return false.

{@link Boolean} isDateEqualToDateAndTime(The)

Function that is used to determine if two dates objects have the same date and time.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Parameters:
{@link Date} The
date to evaluate against this object.
Returns:
{@link Boolean} True if the date passed in is equal the date object; otherwise return false.

isDateEqualToTomorrow(The)

Function that is used to determine a date is the day after another date.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Parameters:
{@link Date} The
date to evaluate against this object.
Returns:
Boolean True if the date is the day after the original date; otherwise return false.

isDateEqualToYesterday(The)

Function that is used to determine a date is the day before another date.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Parameters:
{@link Date} The
date to evaluate against this object.
Returns:
Boolean True if the date is the day before the original date; otherwise return false.

<private> isLastDayInMonth()

Tells you whether it is the last day in a month or not.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Returns:
Boolean True if it is the last day of the month, otherwise false.

<private> <static> Date.isLastDayInMonth(

Static function that tells you whether a date is the last day in a month or not.


Defined in: software.bytepushers.base.app.js.
Author: Tonté Pouncil.
Parameters:
href="http://www.w3schools.com/jsref/jsref_obj_date.asp">Number time Represents the time you want to add to the date.
Returns:
Boolean True if it is the last day of the month, otherwise false.

Documentation generated by JsDoc Toolkit 2.0.0 on Sun Mar 13 2016 11:21:32 GMT-0500 (CDT)