获得徽章 7
- // 周五下午,我的大脑状态
let myBrain = {
motivation: 0.01,
patience: 'NaN',
soul: 'offline',
body: {
status: 'autoPilot',
location: 'inFrontOfComputer',
action: 'pretendingToWork'
}
};
function waitForWeekend() {
const now = new Date();
const下班时间 = new Date();
下班时间.setHours(18, 0, 0);
if (now >= 下班时间) {
console.log("🚀 Launching to weekend!");
return true;
} else {
console.log(`⏳ Time remaining: ${下班时间 - now}ms... or so it feels.`);
setTimeout(waitForWeekend, 1000);
}
}
waitForWeekend();展开1点赞
![[奸笑]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_17.bcebf79.png)