Skip to content

Instantly share code, notes, and snippets.

@jbmilgrom
Last active September 23, 2019 16:27
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 jbmilgrom/fa2cb154f32723b4ce0dd171b401a9ac to your computer and use it in GitHub Desktop.
Save jbmilgrom/fa2cb154f32723b4ce0dd171b401a9ac to your computer and use it in GitHub Desktop.
const decrement100 = x => {
let r = 100;
r = 100 - x;
return r;
};
decrement100(20); // => 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment