25
bioDan
3y

Finished all my tasks. Went to bed happily thinking i deserve this rest.

Then after going to bed:

const onSleep = (position) => {
const newPosition = position === 'left' ? 'right' : 'left';
setTimeout(onSleep(newPosition), 120000);
}

Fml

😫

Comments
Add Comment