Skip to content

Instantly share code, notes, and snippets.

@navasiloy
Last active May 7, 2019 16:17
Show Gist options
  • Save navasiloy/93cdacf8d372d2967021500a5abe59e5 to your computer and use it in GitHub Desktop.
Save navasiloy/93cdacf8d372d2967021500a5abe59e5 to your computer and use it in GitHub Desktop.
orda
const sub = function(init, ...substractors) {
if (!substractors.length) {
return init;
}
return init - substractors.reduce((a, v) => a + v)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment