데이터를 property라는 인덱싱을 통해 구조적으로 묶어놓은 형태let student1 = { name: "KJ", age: 28, hobby: "Sports",}for(let key in student1){ console.log(key); // name,