What If...

What if I do,

setInterval( () => {
  setTimeOut( () => {
      console.log("What If..");
   } , 100 );
 },1000);

will it run log "what if.." after every 1 second with additional 100ms delay due to the setTimeOut?
Was this page helpful?