Skip to content

Instantly share code, notes, and snippets.

@dumindu
Last active September 25, 2016 01:51
Show Gist options
  • Save dumindu/374c69aa9a8cf964158a to your computer and use it in GitHub Desktop.
Save dumindu/374c69aa9a8cf964158a to your computer and use it in GitHub Desktop.
let a = 1;
let b = 2;
let c = a == b; //false
let d = a != b; //true
let e = a < b; //true
let f = a > b; //false
let g = a <= a; //true
let h = a >= a; //true
// 🔎
let i = true > false; //true
let j = 'a' > 'A'; //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment