Skip to content

Instantly share code, notes, and snippets.

@meeDamian
Last active August 29, 2015 14:04
Show Gist options
  • Save meeDamian/0e24526ad4fed604b069 to your computer and use it in GitHub Desktop.
Save meeDamian/0e24526ad4fed604b069 to your computer and use it in GitHub Desktop.
futurists =
sculptor: "Umberto Boccioni"
painter: "Vladimir Burliuk"
poet:
name: "F.T. Marinetti"
address: [
"Via Roma 42R"
"Bellagio, Italy 22021"
]
{poet: {name, address: [street, city]}} = futurists
var city, futurists, name, street, _ref, _ref1;
futurists = {
sculptor: "Umberto Boccioni",
painter: "Vladimir Burliuk",
poet: {
name: "F.T. Marinetti",
address: ["Via Roma 42R", "Bellagio, Italy 22021"]
}
};
_ref = futurists.poet, name = _ref.name, (_ref1 = _ref.address, street = _ref1[0], city = _ref1[1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment