Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. this.getData(id)
  2. .subscribe(res => {
  3. console.log(data.items[0])
  4. // more data processing
  5. })
  6.  
  7. let data;
  8. this.getData(id)
  9. .subscribe(res => data = res)
  10. console.log(data.items[0])
  11. // more data processing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement