DEV Community

Discussion on: What exactly is the DOM?!

Collapse
 
baso53 profile image
Sebastijan Grabar

Virtual DOM isn't just about rendering in batches. It's main use is to not (unnecessarily) render parts of the tree that don't receive new data, and to only render those that do.

Collapse
 
simo97 profile image
ADONIS SIMO

yeah sure ... here is an article about that and some Virtual DOM internals stuff.

dev.to/ycmjason/building-a-simple-...

thanks to : @ycmjason