Calling a controller function from another controller function
$A.enqueueAction(component.get('c.controllerMethod'));
When you are calling a helper function from a controller function you can use:
helper.helperMethod(component, event, helper);
When you are calling a helper function from a helper function you can use:
this.helperMethod(component, event, helper);