Skip to content

Instantly share code, notes, and snippets.

@mmoehrlein
Last active November 24, 2021 14:17
Show Gist options
  • Select an option

  • Save mmoehrlein/681413f44aad53e2fdc579880180aa67 to your computer and use it in GitHub Desktop.

Select an option

Save mmoehrlein/681413f44aad53e2fdc579880180aa67 to your computer and use it in GitHub Desktop.
js snippet that creates an incrementer
// creates an incrementor
function getIncrementer(start, defaultStep = 1){
let i = start;
return function(step = defaultStep){
i += step;
return i;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment