Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save djD-REK/aac9da6754225d006cd62d8b40df40cb to your computer and use it in GitHub Desktop.
Save djD-REK/aac9da6754225d006cd62d8b40df40cb to your computer and use it in GitHub Desktop.
const maybeNull = null
if(maybeNull) { console.log("Not null") } else { console.log("Could be null") } // Could be null
for(let i = 0; null; i++) { console.log("Won't run") }
maybeNull ? console.log("truthy value") : console.log("Falsy value") // falsy value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment