JavaScript “==” Versus “===”
When first learning JavaScript one of the weird things you run across are the comparison operators “==” and “===”. One equal sign “=” is used to assign a value, such as: var myVariable = “Hello World”; Thus the comparison operators, to differentiate, are “==” and “===”. But what is the difference between “==” and “===”?… Continue reading JavaScript “==” Versus “===”