#javascript
Read more stories on Hashnode
Articles with this tag
Introduced with ES11, the nullish coalescing operator is an alternative to the long-used logical OR (||). It comes with some new, unique utility that...
I recently read a great article by Marko Denic about array methods. Inspired by this, I thought to myself that it might be a great opportunity to...
How to measure with greater precision · Measuring execution times of code paths is an essential and fundamental requirement to decide whether code needs...
Freezing Your Arrays · Immutability is a core concept of functional programming. However, most data structures in standard libraries violate this...
Freezing Any Object · JavaScript's objects are mutable by default. If you don't take any action, anyone can mutate the state of objects you create. const...
How to efficiently make use of first-class functions and the Boolean constructor function · Working with arrays in a functional way has mostly become the...