10
자바 스크립트에서 (키, 값)을 반복하는 방법은 무엇입니까?
다음 형식의 사전이 있습니다. dictionary = {0: {object}, 1:{object}, 2:{object}} 다음과 같은 작업을 수행하여이 사전을 반복하는 방법 for((key,value) in dictionary){ //Do stuff where key would be 0 and value would be the object }