Here is the data I have:
d0 = "{\"a\":\"324jk324\",\"b\":\"42793bi42\",\"c\":\"894h42hi\"}"
d = JSON.parse(d0) \\ generates the data shown below
// {"a":"324jk324","b":"42793bi42","c":"894h42hi"}
I attempted to determine the data type and log it as a string:
console.log(typeof d) // string
My goal is to convert the string into a dictionary in order to access the data like this:
d['a'] \\ 324jk324
Can you provide instructions on how to achieve this?