Hello
I'm trying process data coming from the OpenWeatherMap node
but i'm stuck on one parameter that has a number in it's name and the template complains about formatting.
So I want to check if msg.data.snow exists in the message and if it does I want to extract msg.data.snow.1h
I tried with hasOwnProperty("snow") but to me it seems like it works only with msg.payload.
And I can't use var placeholder = msg.data.snow.1h;
for getting the value
Thank you