Tagged Questions
1
vote
2answers
54 views
object/array comparison shorthand in coffeescript?
CoffeeScript has a lot of useful shorthand regarding arrays and objects with comprehensions and destructuring. is there a quick shorthand for comparing entire objects or multiple properties thereof? ...
5
votes
4answers
193 views
Map restructuring
In clojure, I can destructure a map like this:
(let [{:keys [key1 key2]} {:key1 1 :key2 2}]
...)
which is similar to CoffeeScript's method:
{key1, key2} = {key1: 1, key2: 2}
CoffeeScript can ...
2
votes
2answers
362 views
Can destructuring assignment be used to effect a projection in CoffeeScript?
I'm having some trouble understanding destructuring assignment in CoffeeScript. The documentation contains a couple of examples which together seem to imply that renaming objects during assignment can ...