Pure and Impure functions
What are functions?
The function is a piece of code that will help if we are writing the same code repeatedly.
function iAmFunction() {
...some logic here
}
We will call the above function like this as shown below
iAmFunction();
What are pure an...
yaswanthmyneni.hashnode.dev3 min read