@essembe03 I agree with @fight_dragons It’s also easier to understand your code with proper formatted text
for example.
let wordCount = 5;
if (wordCount) {
console.log(“Great! You’ve started your work!”);
} else {
console.log(‘Better get to work!’);
}
let favoritePhrase = ‘’;
if (!favoritePhrase) {
console.log (‘This string is defintely empty’);
} else {
console.log(“This string doesn’t seem to be empty!”);
}