Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created August 9, 2013 14:41
Show Gist options
  • Save drewlesueur/6194151 to your computer and use it in GitHub Desktop.
Save drewlesueur/6194151 to your computer and use it in GitHub Desktop.
ifs
var ifs = function (args, i) {
var i = i || 0;
if (i == args.length - 1) { return args[i] }
else if (i > args.length - 1) { return undefined }
if (args[i]) { return args[i + 1] }
else { return ifs(args, i + 2) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment