Skip to content

Instantly share code, notes, and snippets.

@hellokvn
Last active February 25, 2022 16:57
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 hellokvn/7a626cd91d1ffc5261b40b6ce368f0f0 to your computer and use it in GitHub Desktop.
Save hellokvn/7a626cd91d1ffc5261b40b6ce368f0f0 to your computer and use it in GitHub Desktop.
toggleBoolean.ts
const toggleBoolean = (val: boolean): boolean => (val = !val);
toggleBoolean(true); // -> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment