Docs shorthand object notation (#4356)

* Docs shorthand object notation

A simple but slightly more imaginative example of shorthand object notation.

Closes #1808.

Signed-off-by: Daniel Bayley <daniel.bayley@me.com>

* Update for new documentation folder structure

* Fix typo
This commit is contained in:
Daniel Bayley 2016-11-21 07:04:49 +00:00 committed by Geoffrey Booth
parent cc3be717a0
commit 6c759d49bd
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
name = "Michelangelo"
mask = "orange"
weapon = "nunchuks"
turtle = {name, mask, weapon}
output = "#{turtle.name} wears an #{turtle.mask} mask. Watch out for his #{turtle.weapon}!"

View File

@ -457,6 +457,11 @@ Block
about it (say, when using jQuery).
</p>
<%= codeFor('objects_reserved') %>
<p>
CoffeeScript has a shortcut for creating objects when you want the key
to be set with a variable of the same name.
</p>
<%= codeFor('objects_shorthand') %>
<p>
<span id="lexical-scope" class="bookmark"></span>