How to access a JSON object in Javascript?

javascript, jquery, node.js

Solution

You can always access object's property by index of key. For example:

 var object = {'':'my-first-Name'};
 var value = object[''];

Problem

How do i access the JSON object in javascript whena JSON object is something like this. `{'':'my-first-Name'}` The Name of the property is empty and i am not able to access it. Regards.

Original source