For Loop
3 Ways to Print List Elements on Separate Lines in Python
A guide on printing Python list elements on new lines
pythonfor-loopjoin
“for i in range(len(list))” VS “for element in list” — When to Use Which
A beginner's guide on the two ways of iterating through a string or list.
pythonstringlist
Which type of loop is fastest in JavaScript?
Learn which for loop or iterator suits your requirement and stops you from making silly mistakes that cost your app performance.
javascriptloopsfor-loop
Are JavaScript for loops better than filter() and forEach?()
Over the last few years, the methods in ES6 like filter(), forEach() and map() have been ever so popular. But are they actually better?
javascriptforeachfor-loop