I want to access the JavaScript object property with a special character in it. ex my object(data) is
{
 no :1 , gender : male , Handedness; : RightHanded
}
On doing
console.log(dataHandedness;);
Script throws an error. How can I access the Handedness; property?
Also for rendering this property is angularjs using
{{ data.Handedness;}} gives null
 
    