#and
Read more stories on Hashnode
Articles with this tag
Logical And (&&) It returns the first falsy value. If there is no falsy value, it returns the last value. console.log(true && null && 1); //...