const isLearning = true;
const isOverwhelmed = true;
if (isLearning && isOverwhelmed) {
console.log("Take a break");
}
const isLearning = true;
const isOverwhelmed = true;
if (isLearning && isOverwhelmed) {
console.log("Take a break");
}