My FeedDiscussionsHeadless CMS
New
Sign in
Log inSign up
Learn more about Hashnode Headless CMSHashnode Headless CMS
Collaborate seamlessly with Hashnode Headless CMS for Enterprise.
Upgrade ✨Learn more
Which flavour of loop do you use most of the times in your primary programming language?

Which flavour of loop do you use most of the times in your primary programming language?

Charlie Jose's photo
Charlie Jose
·Apr 1, 2016

For example, I use JavaScript and most of the time I use forEach as following :

arr.forEach(function(item){
    //do something here
});