Guest User

Untitled

a guest
Dec 13th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <div *ngIf="task">{{ task[0]['fields']['title'] }}</div>
  2.  
  3. <div>{{ task[0]['fields']['title']? }}</div>
  4.  
  5. <div>{{ variable? }}</div>
  6.  
  7. <div>{{ task[0]?.fields?.title }}</div>
  8.  
  9. <div>{{ task? task[0]['fields']['title'] : '' }}</div>
  10.  
  11. <div>{{ task? task[0]?.fields?.title : '' }}</div>
Add Comment
Please, Sign In to add comment