News

‘Higher-order functions’ is a fancy term for functions that take other functions as arguments or that return functions. Very powerful! Last week, I casually dropped the term “higher-order function” ...
Continuing with our programming series, we will talk about Function – much of all that it entails. Understanding functions is important if you want to learn how to code. The same applies to current ...
Today at Microsoft's Ignite 2017 conference, the company announced some improvements to Excel during the keynote. They were kind of glossed over, but during a session later on in the day, it expanded ...
First, the most significant feature of arrow functions is that they do not bind their own this, but inherit the this value from the outer scope. At first glance, this may seem like an advantage, but ...
Performing JavaScript addition may seem like a simple task, until you discover the number of different ways you can add them. Mathematical calculations are often critical operations that require ...