Skip to content

Instantly share code, notes, and snippets.

@servatj
Created June 6, 2019 21:15
Show Gist options
  • Save servatj/e94b538fd67b85aeacb20d068b12e75c to your computer and use it in GitHub Desktop.
Save servatj/e94b538fd67b85aeacb20d068b12e75c to your computer and use it in GitHub Desktop.
is Truthy in Javascript
const falsyValues = [undefined, null, 0, '', NaN]
const isTruthy = (value) => !falsyValues.includes(value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment