Skip to content

Instantly share code, notes, and snippets.

@GitHubEmploy
Created January 14, 2022 20:45
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 GitHubEmploy/2d18ac51ad9f0fe0321c6318d847bdd9 to your computer and use it in GitHub Desktop.
Save GitHubEmploy/2d18ac51ad9f0fe0321c6318d847bdd9 to your computer and use it in GitHub Desktop.
const even = num => num % 2 === 0;
console.log(even(2)); // true
console.log(even(3)); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment