Skip to content

Instantly share code, notes, and snippets.

@ferfabricio
Created March 12, 2019 01:59
Show Gist options
  • Save ferfabricio/023e3843531eae438c1392a788b78506 to your computer and use it in GitHub Desktop.
Save ferfabricio/023e3843531eae438c1392a788b78506 to your computer and use it in GitHub Desktop.
Spread operator
const habilidadesProgramacao = [
'Testes',
'Baixa complexidade',
'Código limpo'
]
const habilidadesGerais = [
'Comunicação',
'Pontualidade'
]
const habilidades = [
...habilidadesProgramacao,
...habilidadesGerais
]
console.log(habilidades)
// Resultado
// [ 'Testes',
// 'Baixa complexidade',
// 'Código limpo',
// 'Comunicação',
// 'Pontualidade' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment