I add products in AngularJs, but it show error:
#####In $scope.products, did you add the “Program or be Programmed” object?
###In Maincontroller
app.controller(‘MainController’, [’$scope’, function($scope){$scope.title = ‘AngularJs’, $scope.promo = “Hello”, $scope.products = [{ name: ‘The Book of Trees’, price: 19, pubdate: new Date(‘2014’, ‘03’, ‘08’), cover: ‘img/the-book-of-trees.jpg’},{ name: “Program or be Programmed”, price: 19, pubdate: new Date(‘2014’, ‘03’, ‘08’), cover: ‘img/the-book-of-trees.jpg’}]}])