Aug 27, 2017 · 1 min read
This seems incorrect to me:
If you don’t want to use a different name for the new binding, you can assign a new name:
const { blop: bloop } = blep;
bloop; // 'blop'Shouldn’t that read:
“If you WANT to use a different name…”
Otherwise, what am I missing here?