Skip to content

Instantly share code, notes, and snippets.

@wspringer
Created May 21, 2023 10:02
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 wspringer/914cf0ca4584410d4fb1056d6f7609c0 to your computer and use it in GitHub Desktop.
Save wspringer/914cf0ca4584410d4fb1056d6f7609c0 to your computer and use it in GitHub Desktop.
Pointless isEven functions are the cat videos of code
/**
* Because the Internet
*/
const isEven = (x) => {
const ys = (x >>> 0).toString(2).split("");
return ys[ys.length - 1] !== ys[0];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment