I have the json data below. How do I select the open
value of 2020-11-06 19:50:00
and use a console.log() to log it to the console?
{
"Meta Data": {
"1. Information": "Intraday (5min) open, high, low, close prices and volume",
"2. Symbol": "IBM",
"3. Last Refreshed": "2020-11-06 20:00:00",
"4. Interval": "5min",
"5. Output Size": "Compact",
"6. Time Zone": "US/Eastern"
},
"Time Series (5min)": {
"2020-11-06 20:00:00": {
"1. open": "114.4400",
"2. high": "114.4400",
"3. low": "114.4400",
"4. close": "114.4400",
"5. volume": "457"
},
"2020-11-06 19:50:00": {
"1. open": "114.4000",
"2. high": "114.4000",
"3. low": "114.3300",
"4. close": "114.3300",
"5. volume": "648"
}
}
}