Skip to content

Instantly share code, notes, and snippets.

@dumindu
Last active September 25, 2016 01:52
Show Gist options
  • Save dumindu/6202b39de164634e19ef to your computer and use it in GitHub Desktop.
Save dumindu/6202b39de164634e19ef to your computer and use it in GitHub Desktop.
let a = true;
let b = false;
let c = !a; //false
let d = a && b; //false
let e = a || b; //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment