Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Duplicate of stackoverflow.com/questions/5752059/…, among others. – Trevor Burnham Jun 22 '11 at 0:20

2 Answers

up vote 33 down vote accepted

for key of object

Try it in js2coffee

share|improve this answer
2  
thanks for js2coffee, awesome – fancy Jun 22 '11 at 0:22

10 seconds to look it up: http://jashkenas.github.com/coffee-script/

of keyword:

for key, value of obj

or to make sure you're only checking properties on this object (and not the prototype chain):

for own key, value of obj
share|improve this answer
2  
+1 it took me 40 seconds to use js2coffee to do it for me. – Raynos Jun 21 '11 at 23:33
the point of that website is to a) see how I can do a js pattern in coffeescript and b) convert existing js files to coffeescript without re-writing them. – Raynos Jun 21 '11 at 23:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.