Meet can be useful for building tracking projectiles that always reach their target.
This method will cause the entity to move towards another until they are within 1 pixel of each other at a specified speed.
const missile = new ex.Actor({...});
const target = new ex.Actor({...});
// Track towards the target at 100 pixels/second
missile.actions.meet(target, 100)