I have an object like this:
var person = { name: \"John\", surname: \"Smith\", phone: \"253 689 4555\" }
I want:
Another way is to use lodash function _.toString()
console.log( _.toString( Object.values( person ) ) ); ==> John,Smith,253 689 4555
Check the link below https://lodash.com/docs/4.17.5#toString