> For the complete documentation index, see [llms.txt](https://april.gitbook.io/learning-js/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://april.gitbook.io/learning-js/chapter-9./9.1/9.1.1-for...in.md).

# 9.1.1 for...in

* 키가 심볼인 프로퍼티는 포함되지 않음
* **상속된 프로퍼티가 for...in 에 나타날 위험을 제거하기 위해 사용 (중요**)

```javascript
const SYM = Symbol();

const o = { a: 1, b: 2, c: 3, [SYM]: 4 };

for (let prop in o) {
    if (!o.hasOwnProperty(prop)) continue;
    console.log(`${prop}: ${o[prop]}`);
}
```

결과

```bash
a: 1
b: 2
c: 3
```
