Logical Operators
Intro
There are four logical operators in JavaScirpt:
-
||OR - finds the first truthy value -
&&AND - finds the first falsy value -
!NOT -
??Nullish Coalescing
There are four logical operators in JavaScirpt:
|| OR - finds the first truthy value
&& AND - finds the first falsy value
! NOT
?? Nullish Coalescing