In my angular component's template, I'm trying to achieve something like this:
<div> {{object1.some_property.(get value from object2.property and use it here, as it is a property of object1)}} </div>
Is it possible in JavaScript using some ES6 format or in typescript? If not, should I use some variable in the template to store the object's value and fetch it from there? If yes,then how?