Advertisement
sanjiisan

Untitled

May 14th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function boilEgg(secCount) {
  2. var intId = setInterval(function () {
  3. console.log('Jajo sie gotuje');
  4. }, 2500);
  5.  
  6. setTimeout(function () {
  7. clearInterval(intId);
  8. console.log('Jako gotowe!!');
  9. }, secCount * 1000);
  10. }
  11.  
  12.  
  13. boilEgg(15);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement