Immutability in Reactjs
Mutability vs Immutability of data
Dec 5, 20225 min read

Search for a command to run...
Mutability vs Immutability of data

At times while coding, we have operations that take an unknown amount of time to run and give back a result. Promises are a good way of handling such operations(asynchronous operations). For example, fetching data from a server using an API. Fetching...
What is Scope in Javascript? Javascript variables exist within a scope. Scope is the context or environment in which code exists. This determines whether a piece of code can be accessed by other code. When dealing with variables, it is important to c...