Shreyas arya

Generation

generate functionWed, 08 Feb 2023

Print string "Shreyas" and wait for 10 seconds. The total duration between 3 attempts doesn't exceed 10 seconds.

Script var timeout = 3000; // 3 seconds function printWithTimeout(str, timeout) { setTimeout(function() { console.log(str); }, timeout); } printWithTimeout("Shreyas", timeout); printWithTimeout("Shreyas", timeout); printWithTimeout("Shreyas", timeout);

Questions about programming?Chat with your personal AI assistant