If I use Map.get(‘key1’) in angular template, does the change detection mechanism check the map value every cycle?
I know it is not a good practice to call expressions from a template in angular, because angular cannot predict whether the return value of a function has changed, so it needs to execute the function every time change detection runs.