Shorthand properties examples (#5334)

This commit is contained in:
Brendan Houle
2017-02-17 13:01:57 -05:00
committed by Brian Ng
parent d55a775024
commit 07dd2b1e20

View File

@@ -13,7 +13,7 @@ var o = { a, b, c };
**Out**
```js
var o = { a: a, b: b, c:c };
var o = { a: a, b: b, c: c };
```
**In**