I have an array of object as below
const result = [
{ email: 'me@example.com' },
{ email: 'c@examples.com' }
];
Expected Output :
"me@example.com, c@examples.com"
How can i get the desired output?
I have an array of object as below
const result = [
{ email: 'me@example.com' },
{ email: 'c@examples.com' }
];
Expected Output :
"me@example.com, c@examples.com"
How can i get the desired output?