Skip to content

Instantly share code, notes, and snippets.

@aleksey-rezvov
Created December 28, 2021 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save aleksey-rezvov/4a6fa7179fc788c295a6df9271856dd5 to your computer and use it in GitHub Desktop.
Save aleksey-rezvov/4a6fa7179fc788c295a6df9271856dd5 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