Skip to content

Instantly share code, notes, and snippets.

@wojtrawi
Created August 2, 2018 20:51
Show Gist options
  • Save wojtrawi/cc95f8e0383964781bd1561eadc975bf to your computer and use it in GitHub Desktop.
Save wojtrawi/cc95f8e0383964781bd1561eadc975bf 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