Guest User

Untitled

a guest
Jan 13th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. const oneMonthAgo = moment().subtract(1, 'month').format('YYYY-MM-DD');
  2. console.log(oneMonthAgo)
  3. --> 2017-12-13
  4. console.log(typeof(oneMonthAgo))
  5. --> string
  6.  
  7. const timeSeries = this.props.stock_data["Monthly Time Series"];
  8.  
  9. console.log(timeSeries["2017-12-13"]);
  10. --> Returns the right data
  11.  
  12. console.log(timeSeries[oneMonthAgo]);
  13. TypeError: undefined is not an object (evaluating 'timeSeries[oneMonthAgo]')
Add Comment
Please, Sign In to add comment