Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialOksana Koyfman
10,521 PointsWhy we don't simply return !field.value?
Instead of conditional statement I'd simply return !field.value. Is this solution was provided because of readability issue? There are few ways to solve it then. Let's say to declare const fieldIsEmpty = !field.value; return fieldIsEmpty. Am I missing something?
2 Answers
Steven Parker
231,236 PointsYou can optimize it even further by omitting the variable entirely:
return !field.value;
The sample optimizations shown in the video aren't intended to be the only ones possible. The fact that you're spotting even more compact/efficient solutions is a good indication of your learning progress and grasp of the material!
Zimri Leijen
11,835 PointsThat would have side effects.
any "falsey" value would be considered empty. For example the value 0 would be falsey, and therefore considered empty.
Steven Parker
231,236 PointsSince "value" is a string, it can't have the value 0. Only an empty string would appear "falsey".
Zimri Leijen
11,835 Pointsas long as you can be sure that the value indeed always will be a string