Categories
Codes Javascript

What Is Currying?

In this post, I share about currying, its purpose, and how to use it in real life cases. You mean like cooking curry? Definitely not. Just read the post.

Categories
Codes Javascript

7 Tricks of JavaScript Spread (…) Operator

One of the most useful operators introduced in ES6 in the spread (…) operator. It spreads an iterable object to a new list of elements. In this post, I will share about how to implement the spread operator in some use cases.

Categories
Codes Javascript

JavaScript: var, let, const

What is the difference between var, let, and const in JavaScript? In this post, I will share about the difference in them, and recommendation on which to use.