I tried this simple JavaScript code:
eval(\'{\"Topics\":[\"toto\",\"tata\",\"titi\"]}\')
In the Chrome console, for example, this returns>
You have to write like this
eval('('+stingJson+')' );
to convert an string to Object
Hope I help!