React Native
What is the Virtual DOM in React, and how does React Native adapt this concept without a DOM?
React Native has no DOM, so there is no literal Virtual DOM — but the concept of an in-memory React tree that's diffed before mutating the 'real' UI carries over. RN converts the diff to native view operations that flow through a shadow tree (Yoga / Fabric in C++), then applied to UIViews on iOS and android.view.Views on Android. The reconciliation algorithm and performance heuristics are identical to web React.