#web-development
Read more stories on Hashnode
Articles with this tag
Static Languages: In static languages, once we define a variable and store a number value in it, we cannot assign another type of value to this...
As we saw in the blog post - https://yashpurkar.hashnode.dev/why-do-we-need-languages, a compiler converts high-level, developer-friendly code (which...
Props and state Props Props stand for "properties", props is an object which holds the values of attributes of a tag, props are immutable, which means...
In this blog, I've tried to explain React Components. Components mean we can create pieces of our code, e.g header, navbar, etc. We can use one...
1. Debouncing Debouncing - It limits the execution of a function call and waits for a certain amount of time before running it again. In the...
Memoization - Memoization is an optimization technique that can be used to reduce time-consuming calculations by saving previous input in the cache...