Dec 6, 2020
Hey Rohan, thanks for reading and responding! You’d need to use .map to apply a function to each element of the array:
objectsArray = [{hello: 'world’}]
arrayOfStrings = objectsArray.map(object=>JSON.stringify(object))
Look up my recent article about how to use Set in JavaScript, and I discuss this method there. Cheers!