Snapwiz Interview Question

SetTimeout inside for loop

Interview Answers

Anonymous

Sep 5, 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

Jun 21, 2020

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

3