I have template using date pipe like this
{{value | date: 'dd/MM/yyyy'}}
this value is null
value
null
How to handle this if my value null i got string 'object not match'?
'object not match'
{{ (value !== null) ? (value | date: 'dd/MM/yyyy') : "" }}