Anybody knows if it is possible to get a
javascript for/in loop
from coffeescript?
Actually would like to write the js function
function logobject(o) {
for (p in o)
console.log(p + "=" + o[p])
}
in coffeescript.
|
Anybody knows if it is possible to get a javascript for/in loop from coffeescript? Actually would like to write the js function
in coffeescript. |
|||
|
|||
|
|
|
This might be a bit confusing for CoffeeScript newbies, but the
Also, to restrict this to own properties of the object (skips inherited properties via hasOwnProperty()), the "own" keyword can be added:
|
|||||||
|
coffee-scriptprogrammer, but shouldn't it work just as it is? – gdoron Jun 14 '12 at 21:57:)– gdoron Jun 14 '12 at 21:59