It seems there is a conflict between some editions:
Consider the next snippet, where a property named code wouldn’t have been as indicative of its contents as colorCode could be:
var { metadata: { gender: characterGender } } = character
The scenario we just saw repeats itself frequently, because properties are often named in the context of their host object. While palette.color.code is perfectly descriptive, code on its own could mean a wide variety of things, and aliases such as colorCode can help you bring context back into the variable name while still using destructuring.