Skip to content

Instantly share code, notes, and snippets.

@DanielCender
Created December 20, 2019 20:08
Show Gist options
  • Save DanielCender/5d9c07bf6eac4b59d0ffa3d46161a1aa to your computer and use it in GitHub Desktop.
Save DanielCender/5d9c07bf6eac4b59d0ffa3d46161a1aa to your computer and use it in GitHub Desktop.
Some code golf examples...
// Code golf is taking this function
const reverse = (st) => {
if(st === true) {
return false;
}
if(st === false) {
return true;
}
};
// And making it this
let z=s=>!s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment