I have the following code which suppose to display all products in the 'SimpleController'. But it is not working, it does not display the products.
<div data-ng-controller="SimpleController">
<ul>
<li data-ng-repeat="product in products">
{{product.productname}}
</li>
</ul>
</div>
<script src="angular.min.js"></script>
<script>
function SimpleController($scope)
{
$scope.products = [
{productname:'ariel',price:'7.50'},
{productname:'tinahpa',price:'12.00'},
{productname:'breadbreast',price:'2.00'}
];
}
</script>