Category: react native
React – What to add & Not to add as Dependencies
In the previous lecture, we explored useEffect() dependencies. You learned, that you should add “everything” you use in the effect function as a dependency – i.e. all state…
Vuejs Interview Questions
1) What is VueJS? Vue.js is an open-source, progressive Javascript framework for building user interfaces that aim to be incrementally adoptable. The core library of VueJS…
React Interview Questions
1) Differentiate from Real DOM to Virtual DOM. Real DOM Virtual DOM 1. It updates slow. 1. It updates faster. 2. Can directly update HTML….