Sorry if this is a stupid question, but I can not find the answer anywhere.
How does the following code work? (I understand that it crosses the elements els)
var i = els.length;
while (i --> 0) {
var el = els[i];
}
I have no idea what that means -->. There is no documentation for this. Can someone enlighten me?
source
share