for(let key in data){ console.log(key); }
in 과 of 는 다르다. 'in' 키워드와 같은 경우는 객체를 순환할 때 사용하며 'of' 와 같은 경우는 iterable 객체를 순환할 때 사용된다.