Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function boilEgg(secCount) {
- var intId = setInterval(function () {
- console.log('Jajo sie gotuje');
- }, 2500);
- setTimeout(function () {
- clearInterval(intId);
- console.log('Jako gotowe!!');
- }, secCount * 1000);
- }
- boilEgg(15);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement