How can I use for (var key in object) in CoffeeScript? It compiles to...
for (_i = 0, _len = object.length; _i < _len; _i++) {
key = object[_i];
...but I just want to iterate though an object.
|
How can I use for (var key in object) in CoffeeScript? It compiles to...
...but I just want to iterate though an object. |
|||||
|
|
Try it in js2coffee |
|||||
|
|
10 seconds to look it up: http://jashkenas.github.com/coffee-script/
or to make sure you're only checking properties on this object (and not the prototype chain):
|
|||