Fix typo in JavaScript question (#32)

This commit is contained in:
Alex Palma 2018-02-21 09:49:14 +11:00 committed by Yangshun Tay
parent 6d2de5e05b
commit 59a0b56f44
1 changed files with 1 additions and 1 deletions

View File

@ -1139,7 +1139,7 @@ const { e, f, ...others } = {
f: 2,
g: 3,
h: 4,
}; // e: 1, b: 2, others: { g: 3, h: 4 }
}; // e: 1, f: 2, others: { g: 3, h: 4 }
```
###### References