I've been reading some articles about Angular 2 pitfalls and what to avoid, one of those things revolves around not accessing the DOM directly.
I noticed that the Renderer
is quite useful since it contains some methods that can help avoid the DOM pitfall. However, I noticed that it doesn't contain any get
functions, only set
functions such as setElementAttribute
, setElementClass
and so on.
So my question is rather simple, how do you use the above functions but as the get
and remove
version? Do they live in another class or how do you work with retrieving attributes or classes for example?