Recently, I discovered that trying to convert a timestamp to a date within an Angular expression isn't functioning properly.
So, I attempted to do something like this:
<th>{{new Date(elem.timestamp}}</th>
Unfortunately, this resulted in an internal Angular error.
I'm curious why it's not feasible to cast to a Date within an Angular expression?