'How can I get Javascript to ignore one of its built-in methods? [duplicate]

I am trying to parse through the JSON response from the OpenWeather API and I want to get the probability of precipitation, but the corresponding API response field is 'pop', so whenever I try to access it thinks that I am trying to use the .pop() method. How can I get Javascript to ignore the .pop() method and just let me use .pop to access the API?

My code:

ImageOfMyCodeThinkingPopIsACallToAMethod

The applicable portion of the JSON response:

TheApplicablePortionOfTheJSONResponse

Thank You



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source