Asynchronous

by shivkumarganesh

HTML

<div>

JavaScript

$(document).ready(
    
    
function(){
    
   var helloFunc= setInterval(function(){
    $('body').append('Hello<br>');
},240);
  
  var helloFunc1= setInterval(function(){
    $('body').append('<b>Hello</b><br>');
},129);
}
);


helloFunc();
helloFunc1();