Skip to content

Instantly share code, notes, and snippets.

@c0depanda
Created July 19, 2018 22:10
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 c0depanda/d1d2b26c1721f41ade5b789b7b850623 to your computer and use it in GitHub Desktop.
Save c0depanda/d1d2b26c1721f41ade5b789b7b850623 to your computer and use it in GitHub Desktop.
function user(name, age)
{
console.log(`My name is ${name}, I am ${age} years old.`);
}
let person = ['Brian Willer', 38];
user(...person); //My name is Brian Willer, I am 38 years old.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment