HTML
<section>
  <div>
     <p>{{item}}</p>
  </div>
</section>
controller.js
(function () {
   var ctrl = function ($scope){
        $scope.item = "test";
   }
}());
This is my team's project. I cannot change how it is set up. The problem I am trying to solve is inserting the $scope.item into the html. How could I do this?


