Hey guys,
I’m not sure why it’s giving me a error message of my pubdate not displaying correctly. Any help would be muched appreciated!
<Below this line, add a link to the EXACT exercise that you are stuck at.>
<In what way does your code behave incorrectly? Include ALL error messages.>
<div class="col-md-6">
<div class="thumbnail">
<img src="img/the-book-of-trees.jpg">
<p class="title">
{{product.name | uppercase}}</p>
<p class="price">
{{product.price | currency}} </p>
<p class="date">
{{pubdate}} </p>
</div>
</div>
$scope.product =
{
name: ‘The Book of Trees’,
price: 19,
pubdate: new Date(‘2014’, ‘03’,‘08’)
};
}]);