Appearance
Global
Global objects can be referenced without a containing class.
Static Methods
eval(Input)
Run the input string containing javascript, executing it as it would any javascript code.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| Input | String | The input string. |
parseInt(Input)
Convert the string parameter into an integer.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| Input | String | The input string. |
eval(Input)
Run the input string containing javascript, executing it as it would any javascript code.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| Input | String | The input string. |
isset(input)
Returns true if all the variables in all the expressions passed are defined.
Returns: true if all variables used in the expression are defined, false if not.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| input | any | One or more expressions |
isDefined(input)
Returns true if all the variables in all the expressions passed are defined.
Returns: true if all variables used in the expression are defined, false if not.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| input | any | One or more expressions |
Static Properties
Infinity
A value representing infinity.
NAN
A value "not a number"
undefined
A value representing an undefined value. For example, int "var x;" x becomes set to 'undefined'.