Skip to content

Instantly share code, notes, and snippets.

@ferfabricio
Created March 12, 2019 01:42
Show Gist options
  • Save ferfabricio/0380e359351e06f7c7662a7e596df38a to your computer and use it in GitHub Desktop.
Save ferfabricio/0380e359351e06f7c7662a7e596df38a to your computer and use it in GitHub Desktop.
Spread operator
const nome = ['Fernando', 'Fabricio']
function nomeCompleto (nome, sobrenome) {
return `${nome} ${sobrenome}`
}
console.log(nomeCompleto(...nome))
// Resultado:
// Fernando Fabricio
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment