var heights = lotsOfElements.map(function(el){ el.classList.add('ok'); return el.clientHeight; });
lotsOfElements.forEach(function(el){ el.classList.add('ok'); }); var heights = lotsOfElements.map(function(el){ return el.clientHeight; });