here is my code. ng-repeat
has no effect inside script for some reason. console output just has three {{item}}
strings. I expected the letters 'a', 'b', and 'c'. why is that?
<div ng-app ng-controller="controller">
<script type="text/javascript" ng-repeat="item in items">
var v = '{{item}}';
console.log(v);
</script>
</div>
</p>
function controller($scope) {
$scope.items = ['a', 'b', 'c'];
}