Skip to content

Instantly share code, notes, and snippets.

@evensandbox
Created October 13, 2013 08:22
Show Gist options
  • Select an option

  • Save evensandbox/6959783 to your computer and use it in GitHub Desktop.

Select an option

Save evensandbox/6959783 to your computer and use it in GitHub Desktop.
a and b || c
var a = Math.random() * 6 + 2;
var b = typeof a === 'number' && a > 5 && a - 5 || 'redky';
console.log( a, b );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment