Is it possible to bind (one-way and two way) an angular object but using a dynamic string.
So instead of doing
{{ myObject.name }}
I can do this, which works fine
{{ myObject['name'] }}
But what about if the property name is in another variable in scope? This doesnt work
{{ myObject['{{ anotherVar }}'] }}
Is something like this possible?