Mỗi lần lặp lại của forEach()
sẽ gọi hàm mà bạn đã cung cấp. Để ngừng xử lý thêm trong bất kỳ lần lặp nhất định nào (và tiếp tục với mục tiếp theo), bạn chỉ cần return
từ chức năng tại điểm thích hợp:
elementsCollection.forEach(function(element){
if (!element.shouldBeProcessed)
return; // stop processing this iteration
// This part will be avoided if not neccessary
doSomeLengthyOperation();
});