Skip to content

Instantly share code, notes, and snippets.

@DavidMellul
Last active March 9, 2018 22:56
Show Gist options
  • Save DavidMellul/913ce0d7aeac989e1fb632b917df5362 to your computer and use it in GitHub Desktop.
Save DavidMellul/913ce0d7aeac989e1fb632b917df5362 to your computer and use it in GitHub Desktop.
let x = 3;
if(x > 1)
console.log('X is above 1');
else
console.log('X is below 1');
// => X is above 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment