我有一个对象说:
var temp = {d:4,f:4,g:5};
有没有办法使用coffeescript从中获取所有值?
答案 0 :(得分:2)
绝对
values = (value for own prop, value of temp)
答案 1 :(得分:0)
好吧,如果一个对象充满了类实例,那么icktoofay的答案会很棒,但如果没有,请让我们明确表示没有它可以做到这一点。 own
关键字。
temp = {d:4,f:4,g:5}
console.log val for key, val of temp
# result is '4,4,5'