Functional Programming in JavaScript? Yes, Please

One of the hot topics right now in the web development world is functional programming in the language of the web, JavaScript. Read more

Similar

Let, const, and var are WEIRD in JavaScript

Variable used to be the norm in JavaScript, but now there are better players on the playing field: let and const. The main difference? Scope. See, scope is important in programming. In most cases, always using global variables isn't a great idea, but ther... (more…)

Read more »

JavaScript Variables: Scope and Hoisting

Creating variables in JavaScript is one of the most basic parts of the language. You probably do it all the time without even thinking twice about it. But if you truly understand how variables are scoped it can save you some issues in the long run, especi... (more…)

Read more »