Snapwiz interview question

SetTimeout inside for loop

Interview Answers

Anonymous

5 Sept 2020

Can you please tell what kind of questions they have ask you in online assessment or that you have provided that much only ??

Anonymous

21 Jun 2020

// setTimeout inside a For loop for(var i = 0;i < 5; i++){ setTimeout[function(){ console.log('count ', i); }, 3000); }

3