Skip to content

Instantly share code, notes, and snippets.

@aleksey-rezvov
Last active December 30, 2021 12:07
Show Gist options
  • Save aleksey-rezvov/70f1236a8751928f0dc1af12d7fca5fe to your computer and use it in GitHub Desktop.
Save aleksey-rezvov/70f1236a8751928f0dc1af12d7fca5fe to your computer and use it in GitHub Desktop.
export function isEven(num:number): boolean {
// Returns True if **num** is even or False if it is odd.
return Boolean(num % 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment