Currying simply means evaluating functions with multiple arguments and decomposing them into a sequence of functions with a single argument. In other terms, currying is when...
Continue reading...Kashinath Jadhav
Software Developer || Frontend Developer || fascinated by tech Trends || Building usable systems that work on web and mobile
Promises in Javascript
What is a Promise? JavaScript is a single-threaded programming language, which means only one thing can happen at a time. Before ES6, we used callbacks to...
Continue reading...JavaScript Arrays
What is an array? An array is a special variable, which can hold more than one value. Syntax: const array_name = [item1, item2, …]; Example:...
Continue reading...Javascript loops
Loops in JavaScript JavaScript loops provide a quick and easy method of doing something repeatedly. They are used to repeat an action number of times without...
Continue reading...React Custom Hooks
What is a Custom hook? There might be instances where you have been using the same repetitive and redundant stateful logic inside multiple components. We were...
Continue reading...