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? i.e.
activity.date() is selected.date() and activity.month() is selected.month()
would be something a little like
activity[date(), month()] is selected[date(), month()]
I haven't seen anything like that in the docs but I figured I'd ask.