@necrosis@chaos.social function checkTimeAndStop() { const currentDate = new Date(); const currentHour = currentDate.getHours(); const lateHour = 22; if (currentHour >= lateHour) { console.log("Anwendung wird gestoppt, da es zu spät ist."); return; } console.log("Anwendung läuft weiter."); } checkTimeAndStop();