There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
Agree with a comment or answer? Like () to up-vote the contribution!
This is something that I’ve noticed is quite common in the lessons I’ve done so far. We’re taught “x, y, and z are best practices, strive to be a good developer by doing this” and the tasks immediately require us to break these best practices and do “a, b and c”.
Not sure if this is done intentionally to prepare us for the real world – assuming that most developers we will work alongside are cowboys that do whatever they want with no regard for accurate and organised code.
if (true) {
console.log('kudos to them')
} else {
console.log('why is it so inconsistent?');
};
Maybe it’s the case that we should be aware of best practices and implementing them in comments in order to practice them for our own benefit, and giving the lessons what they ask for to fulfil the exercise requirements.