Skip to content

Instantly share code, notes, and snippets.

@JaySunSyn
Last active October 15, 2019 08:32
Show Gist options
  • Save JaySunSyn/83e26429c097f520cf1eea602c12f875 to your computer and use it in GitHub Desktop.
Save JaySunSyn/83e26429c097f520cf1eea602c12f875 to your computer and use it in GitHub Desktop.
Example defined checking
// DON'T do this
function when(expression, trueFn, falseFn) {
if (expression) {
return trueFn();
}
if (falseFn) {
return falseFn();
}
return undefined;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment