tomayac’s avatartomayac’s Twitter Archive—№ 1,863

  1. #JavaScript goodie: iterating over NodeLists: for (var i = 0, node; node = nodes[i]; i++) {/**/}. Saves the nodes.length call. #Profiling