javascript-truthy-falsy Flashcards
1
Q
Why is it important to understand truthy or falsy values?
A
TO create conditionals.
2
Q
Difference between null and undefined?
A
Null = intentionally left empty undefined= empty for now
3
Q
Why should we always use === for comparisons?
A
To check values and types all together to avoid issues .