Returns the class id. Primarily used to help identify what class an instance was instantiated with and is also output during the ige.scenegraph() method's console logging to show what class an object belongs to.
classId ()
Get the class id of an object
var entity = new IgeEntity();
// Will output "IgeEntity"
console.log(entity.classId());