Skip to content

Instantly share code, notes, and snippets.

@wojtrawi
Created August 2, 2018 20:50
Show Gist options
  • Save wojtrawi/861ed5d62ffb2bff8a4dc96fc3826fdf to your computer and use it in GitHub Desktop.
Save wojtrawi/861ed5d62ffb2bff8a4dc96fc3826fdf to your computer and use it in GitHub Desktop.
const userName = 'Chris';
const adminName = 'Greg';
if (userName === adminName) {
console.log('Logged in as the admin');
} else {
console.log('Logged in as a regular user');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment