Category: JavaScript
-
Spread and Rest Operators in JavaScript
Unlock the full potential of arrays and objects in JavaScript with the spread and rest operators. Learn how to merge arrays, add properties to objects, and pass separate arguments in function calls with ease. Stay ahead of the game in modern JavaScript development with a comprehensive understanding of the spread and rest operator.
-
Is everything in JavaScript an Object or Function?
I think everyone would agree JavaScript is the most misunderstood language. It’s not just misunderstood by people who dislike it, but also by the people who likes it. I kind of understand the confusion since JavaScript has both Good and Bad Parts. This blog is about one such misunderstanding. Is everything in JavaScript objects? Yes!…
-
Beware of these in JavaScript!
All programming languages has good and bad parts. It is up to us as a developer to be aware of these bad parts and be prepared to cope. JavaScript has its fair share of bad parts and few awful parts, but still pretty good language considering the fact that it was designed in 10 days. So below are…
-
Higher order functions for Array in JavaScript
In JavaScript Higher Order Functions are functions which operates on other functions by either taking them as an argument or by returning it. Higher Order Functions basically provides an abstraction over action. Below are list of six higher order functions that I believe are most useful 1. Array.prototype.forEach Executes the provided callback for each items in the…