What is the best way to use two-way-binding (syntax-sugar) in Angular 2 with the safe navigation operator. I\'ve tried the following.
{{x?.y?.z}} export class ParentCmp { x={y:{z:"a"}} changeMe(val) { console.log(val); this.x.y.z=val; } }
http://plnkr.co/edit/ZBeSPqf4HUwLOeWSNfZJ?p=preview