I'm fetching data in an array like this
[
{
"Id": 111,
"Name": "Test 1",
"Email": "email1@domain.net",
},
{
"Id": 133,
"Name": "Test 2",
"Email": "null",
},
{
"Id": 133,
"Name": null,
"Email": "email2@domain.net",
}
]
from api
this.Details = response;
i want to replace the value of null or blank with -
.