Hudson, Rick (2013-12-06T20:18:51.000Z)
domenic at domenicdenicola.com (2013-12-10T01:36:54.175Z)
Allen > 1. For the map method, the source and destination collection are the same object so the collection argument to the closure parameter identifiers both the source and destination object Not sure I'm following you here. The collection passed to the closure parameter (aka callback function) in map is the source and not the destination. As far as I can tell the destination isn't available until map returns it. ``` >>> x = [1,2] [1,2] >>> y = x.map((e,i,c) => c) [[1,2], [1,2]] >>> x === y[0] true ```