from https://github.com/CesiumGS/cesium/blob/master/Source/Core/defined.js
Returns true if the object is defined, returns false otherwise.
if (defined(positions)) { doSomething();} else { doSomethingElse();}
The object.
Generated using TypeDoc
from https://github.com/CesiumGS/cesium/blob/master/Source/Core/defined.js
Returns
Returns true if the object is defined, returns false otherwise.
Example