Is there a correct way to reference the output of an for loop in CoffeeScript. It seems that using the internal variable _results works some of the time, but it does work in some situations (shown below). Is there a "correct" way to reference the accumulator that is stable?
Works
Array::unique = ->
value for value in this when not (value in _results)
Doesn't work (renames iterator to _results2)
Array::unique = ->
_results = null
value for value in this when not (value in _results)
Also doesn't work (renames iterator to _results2)
Array::unique = ->
value for value in (value for value in this) when not (value in _results)