Skip to content

Instantly share code, notes, and snippets.

@mathiasgheno
Created November 15, 2022 23:50
Show Gist options
  • Save mathiasgheno/5a4eaf9455db42796cae5e99009b37dc to your computer and use it in GitHub Desktop.
Save mathiasgheno/5a4eaf9455db42796cae5e99009b37dc to your computer and use it in GitHub Desktop.
const pessoa = {
nome: 'mathias',
idade: 26,
profissoes: ['desenvolvedor', 'professor'],
}
const { profissoes } = pessoa;
const [ _, segundaProfissao ] = profissoes;
console.log(segundaProfissao); // professor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment