What type of DOM does Angular implement? 

DOM (Document Object Model) treats an XML or HTML document as a tree structure in which each node is an object representing a part of the document. 

Angular uses the regular DOM. This updates the entire tree structure of HTML tags until it reaches the data to be updated. However, to ensure that the speed and performance are not affected, Angular implements Change Detection.

With this, you have reached the end of the article. We highly recommend brushing up on the core concepts for an interview. It’s always an added advantage to write the code in places necessary. 


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *