Вы можете запланировать операции с помощью setTimeout
команды
setTimeout (() => {
console.log("Hello from setTimeout");
}, 1000);
или отписаться:
// Stop listening for location after 10 seconds
setTimeout(() => { locationsSubscription.unsubscribe(); }, 10000);
или подпишитесь снова:
// After 1/2 second, subscribe again.
setTimeout(() => {
sequence.subscribe({
next(num) { console.log('2nd subscribe: ' + num); },
complete() { console.log('2nd sequence finished.'); }
});
}, 500);
или задержка console.log:
setTimeout (() => {
console.log("Hello from setTimeout");
}, 1000);