object destructuring

[əbˈdʒɛkt dɪˈstrʌktʃərɪŋ]
noun
desestruturação de objeto
1. A JavaScript (and other programming languages) syntax feature that allows extracting individual properties from an object and assigning them to variables in a single statement
const { name, age } = person; allows you to extract name and age properties from the person object
const { nome, idade } = pessoa; permite extrair as propriedades nome e idade do objeto pessoa
2. A technique used to unpack nested object properties or create shortcuts for accessing object properties
Using object destructuring reduces boilerplate code when working with API responses
Usar desestruturação de objeto reduz código repetitivo ao trabalhar com respostas de API
Object destructuring is a modern ES6+ JavaScript feature that became mainstream in the 2010s. In Brazilian and Portuguese tech communities, the term is typically used in English within code discussions, but 'desestruturação de objeto' is the formal Portuguese equivalent. This feature is taught in most modern JavaScript courses in both Brazil and Portugal, representing the shift toward more concise and readable code syntax.
Synonyms / Sinônimos
destructuring assignmentobject unpackingproperty extraction
Antonyms / Antônimos
object compositionobject encapsulation

Regional Variations

General Brazilian
desestruturação de objeto
Most common term used in Brazilian tech communities
São Paulo
desestruturação de objeto
Standard usage in tech hubs
Portugal
desestruturação de objeto
European Portuguese uses the same term; sometimes 'desempacotamento de objeto'
Tech Communities Worldwide
destructuring
Often used in English even in Portuguese-speaking communities due to programming terminology

Related Words

array destructuringspread operatorrest parametersvariable assignmentES6 syntaxJavaScript

Related Idioms & Phrases

unpacking an object
extracting properties from an object
breaking down an object
Look up more words on Fala2Me
The free English-Portuguese dictionary with real Brazilian accents, NYC slang, conjugator and more
Open Fala2Me →