JavaScript does not have a construct to cast into a (different) type like many other languages but some built-in helpers can be used instead. Most notably,...
Continue reading...Kashinath Jadhav
Software Developer || Frontend Developer || fascinated by tech Trends || Building usable systems that work on web and mobile
Currying in JavaScript
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...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...