I have an object within another object, which im trying to get the value but it always returns "unexpected identifier".
snow: Object {3h: 1.3}
console.log(data.snow.3h) //returns Uncaught SyntaxError: Unexpected identifier
console.log(data.snow) //returns Object {3h: 1.3}
So how can i get the value of 3h ?