defined(value) → Boolean
| Name | Type | Description |
|---|---|---|
value |
Object | The object. |
Returns:
Returns true if the object is defined, returns false otherwise.
Example:
if (Cesium.defined(positions)) {
doSomething();
} else {
doSomethingElse();
}
Source:
Core/defined.js, line 18
