Skip to content

Instantly share code, notes, and snippets.

@ivankisyov
Created December 25, 2018 11:57
Show Gist options
  • Save ivankisyov/1e3f5edf82d37e2f606238d3a42cc3ea to your computer and use it in GitHub Desktop.
Save ivankisyov/1e3f5edf82d37e2f606238d3a42cc3ea to your computer and use it in GitHub Desktop.
Rest parameters

Rest parameters

function logNumbers(...args) {
  console.log(args); // type: array
}

logNumbers(1,2)
// [1, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment