I am getting back into web development, and have been trying to go over the nuances of jscript recently. I was pouring through the source of the THREEx extension library built o
The !== opererator tests whether values are not equal or not the same type. i.e.
!==
var x = 5; var y = '5'; var 1 = y !== x; // true var 2 = y != x; // false