LLakshguptaincyborglaksh.hashnode.dev·Jun 11, 2023 · 2 min readReact States & Virtual DOMIn React, the virtual DOM (Document Object Model) is an abstraction of the actual DOM. It is a lightweight representation of the UI components and their structure. When there is a state change in a React component, React creates a new virtual DOM tre...00
LLakshguptaincyborglaksh.hashnode.dev·Jun 10, 2023 · 2 min readDefer Keyword in GolangThe defer keyword in Golang is used to execute a function call after the current function has finished executing. This can be useful for things like closing files, releasing resources, or performing cleanup tasks. The defer keyword is always executed...00