I have a date objectdata = '2021-07-30T22:33:38.000Z'
. I need to manipulate the string a bit, for example create a string like 'abc2021-07-30T22:33:38.000Z
. If I use 'abc'+data
, the result would become abcFri Jul 30 2021 15:33:38 GMT-0700 (Pacific Daylight Time)
is there a way to convert data object to a string type without changing the format?