Sign in
Log inSign up
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
});