Всем привет.
я в курсе про SetInterval и SetTimeout ,но тут встала задача остановить функцию через 15 секунд и я не знаю как это сделать
просто тупо убить,что бы всё остановилось.не могу понять как это сделать
код вот такой
буду рад любой помощи
// JavaScript Document
window.onload = function(){
function drawTheBannerBackground() {
console.log("draw and animate the background.");
setTimeout(frame1, 100);
}
function frame1() {
console.log("draw and animate frame one.");
setTimeout(frame2, 5000);
}
function frame2() {
console.log("draw and animate frame two.");
setTimeout(frame3, 5000);
}
function frame3() {
console.log("draw and animate frame three.");
}
};