Class Index | File Index

Classes


Built-In Namespace Object

Method Summary
Method Attributes Method Name and Description
<static>  
Object.isArray(

Static function that tells you whether an object is an array or not.

<static>  
Object.isBoolean(

Static function that tells you whether an object is a boolean or not.

<static>  
Object.isDate(

Static function that tells you whether an object is a date or not.

<static>  
Object.isDefined(

Static function that tells you whether an object is defined or not.

<static>  
Object.isNumeric(

Static function that tells you whether an object is numeric or not.

<static>  
Object.isString(

Static function that tells you whether an object is a string or not.

Method Detail
<static> Object.isArray(

Static function that tells you whether an object is an array or not.


Defined in: software.bytepushers.BytePushers.js.
Author: Tonté Pouncil.
Parameters:
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures">Object of some type The object that will be tested to see if it is an array.
Returns:
Boolean True if an object is an array, otherwise false.

<static> Object.isBoolean(

Static function that tells you whether an object is a boolean or not.


Defined in: software.bytepushers.BytePushers.js.
Author: Tonté Pouncil.
Parameters:
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures">Object of some type The object that will be tested to see if it is a boolean.
Returns:
Boolean True if an object is a boolean, otherwise false.

<static> Object.isDate(

Static function that tells you whether an object is a date or not.


Defined in: software.bytepushers.BytePushers.js.
Author: Tonté Pouncil.
Parameters:
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures">Object of some type The object that will be tested to see if it is a date.
Returns:
Boolean True if an object is an date, otherwise false.

<static> Object.isDefined(

Static function that tells you whether an object is defined or not.


Defined in: software.bytepushers.BytePushers.js.
Author: Tonté Pouncil.
Parameters:
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures">Object of some type The object that will be tested to see if it is defined.
Returns:
Boolean True if an object is defined, otherwise false.

<static> Object.isNumeric(

Static function that tells you whether an object is numeric or not.


Defined in: software.bytepushers.BytePushers.js.
Author: Tonté Pouncil.
Parameters:
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures">Object of some type The object that will be tested to see if it is numeric.
Returns:
Boolean True if an object is numeric, otherwise false.

<static> Object.isString(

Static function that tells you whether an object is a string or not.


Defined in: software.bytepushers.BytePushers.js.
Author: Tonté Pouncil.
Parameters:
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures">Object of some type The object that will be tested to see if it is a string.
Returns:
Boolean True if an object is an string, otherwise false.

Documentation generated by JsDoc Toolkit 2.0.0 on Wed May 18 2016 14:57:14 GMT-0700 (PDT)