node.js에서 객체 키를 반복 Javascript 1.7부터 Iterator 객체가 있습니다. var a={a:1,b:2,c:3}; var it=Iterator(a); function iterate(){ try { console.log(it.next()); setTimeout(iterate,1000); }catch (err if err instanceof StopIteration) { console.log("End of record.\n"); } catch (err) { console.log("Unknown error: " + err.description + "\n"); } } iterate(); node.js에 이와 같은 것이 있습니까? 지금 나는 사용하고 있습니다 : function Iterato..