#javascript / #typescript #developer tip: Do you actually know the difference between the ?? and || operator? ?? will only check for a nullish value (like null or undefined) while || checks for any falsy value, here is a quick #code example:
4 likes 0 replies
?