StringcomponentIdThe id of the component to remove.
Remove a component by it's id (namespace)
var entity = new IgeEntity();
// Let's add the velocity component
entity.addComponent(IgeVelocityComponent);
// Now that the component is added, let's remove
// it via it's id ("velocity")
entity.removeComponent('velocity');