Skip to content

Instantly share code, notes, and snippets.

@abel-masila
Last active November 18, 2019 12:49
Show Gist options
  • Save abel-masila/a313e887af3590c5233266d6ba971ea8 to your computer and use it in GitHub Desktop.
Save abel-masila/a313e887af3590c5233266d6ba971ea8 to your computer and use it in GitHub Desktop.
const userA = getUser('existingUser'); // { name: Abel, status: 'lit' }
const userB = getUser('nonExistingUser'); // null
const userAExists = !!userA; // true
const userBExists = !!userB; // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment