When using "controller as syntax" you would give your controller an alias in the html when using the ng-controller directive.
<div ng-controller="MainCtrl as main">
</div>
You can then access properties and methods from the main variable that represents our contr...