A closure is not really a thing. It is just a term we use to describe what happens when we have a function that has access to outside variables other functions cannot access. (more…)
Read more »
I was doing code review for a coworker yesterday, and it soon became obvious that he used a linter and that the linter gave him a bright idea: use strict comparisons. Using strict comparisons is a great rule to follow. === instead of ==, !== instead of !=... (more…)
Read more »
Javascript Interpreter in BASH. Contribute to elemantalcode/jash development by creating an account on GitHub. (more…)
Read more »
It might be the very first thing a lot of people learn in JavaScript: alert("Hello, World"); One day at CodePen, we woke up to a ton of customer support... (more…)
Read more »
CSS isn’t going anywhere. A lot of the projects choose to style documents in JavaScript for wrong reasons. This article lists common misconceptions (myths) and the existing CSS solutions to those… (more…)
Read more »