Skip to content Skip to sidebar Skip to footer

Unexpected Output Using Reduce To Create Json

I'm working with apps script. I have an array of objects 'sendableRows' that I would like to turn to json and email. an object looks like: [{Phone Number=14444444444, Eagerness=Hig

Solution 1:

Try

const json = JSON.stringify(sendableRows);

Post a Comment for "Unexpected Output Using Reduce To Create Json"