Hello In Javascript I get error result from API result array object can be
{
ProjectName:["Invalid Project Name"],
entityName:["Invalid entityName"]
}
or
{
ProjectName:["Invalid Project Name"],
}
and key names are dynamic which comes from API. so I just need values as
["Invalid Project Name","Invalid entityName"]
How can I convert this object to this array ?
Thanks in advance