One thing that threw me off when I started learning JavaScript (with a background in Java) was the fact that JavaScript has both undefined and null as possible values for a variable. In Java, all we have is just null which means that the variable has no value. So when I saw this ...

The post EP37 – Null vs Undefined in JavaScript appeared first on Coders Campus.