Skip to content

Instantly share code, notes, and snippets.

@JiLiZART
Created June 17, 2017 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JiLiZART/6602a9f371228b00efa045448260018c to your computer and use it in GitHub Desktop.
Save JiLiZART/6602a9f371228b00efa045448260018c to your computer and use it in GitHub Desktop.
const If = (cond) => (truly) => (falsy) => [truly, falsy][!cond + 0]()
const result = If(false)(() => 'true')(() => 'false')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment