Skip to content

Instantly share code, notes, and snippets.

@JimRottinger
Created May 26, 2019 20:08
Show Gist options
  • Save JimRottinger/ce27bd5aa658a7e14c04a80c19e90af0 to your computer and use it in GitHub Desktop.
Save JimRottinger/ce27bd5aa658a7e14c04a80c19e90af0 to your computer and use it in GitHub Desktop.
function sumThreeNumbers(num1, num2, num3) {
console.log([num1, num2, num3]); //[4,6,10]
return num1 + num2 + num3;
}
const numbers = [4,6,10];
console.log(sumThreeNumbers(...numbers)); // 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment