Looking for assistance with reformatting the values in this Array :
[{abcd:1, cdef:7},{abcd:2, cdef:8}, {abcd:3, cdef:9}]
I want to convert all the values into strings like so :
[{abcd:"1", cdef:"7"},{abcd:"2", cdef:"8"}, {abcd:"3", cdef:"9"}]
Can anyone help with this task?