I am working on a project for a javascript program as seen in the following...
var temp = 14;
var y 2;
temp <<= y;
document.write(temp)
....and I can't figure out how the <<= operator works of how this program works. Can someone please explain how it works? Thanks.