기록
					
					
						2023. 4. 16.
																
					
					
					Virtual DOM, state, props
					
					Virtual DOM 이란? 위키에서의 정의 A virtual DOM is a lightweight JavaScript representation of the Document Object Model (DOM) used in declarative web frameworks such as React, Vue.js, and Elm.[1] Updating the virtual DOM is comparatively faster than updating the actual DOM (via JavaScript).[citation needed] Thus, the framework is free to make necessary changes to the virtual DOM relatively cheaply. The f..