Function to check if the given value is a valid value and that it is not null. This function was originally created by Adobe.
var value; if(isValidType(value)) { //Do something if this is a valid value }
Parameter | Data type | Required | Description |
---|---|---|---|
value | all | True | The value to check |
Value | Meaning |
---|---|
true | The value is valid and not null |
false | The value is invalid or is null |