What If...
What if I do,
will it run log "what if.." after every 1 second with additional 100ms delay due to the setTimeOut?
will it run log "what if.." after every 1 second with additional 100ms delay due to the setTimeOut?
setInterval( () => {
setTimeOut( () => {
console.log("What If..");
} , 100 );
},1000);setInterval( () => {
setTimeOut( () => {
console.log("What If..");
} , 100 );
},1000);