객체안에 키가 있는지 확인하기 위해서는 크게 2가지 방법이 있다. hasOwnProperty 와 in 을 사용하는 방법이다. 이 둘의 차이점은 prototype의 내용까지 참조하는지 않하는지에 대한 차이이다. function Person(){ this.name = 'K';}Person.prototype.eyes = 2; var k = new Person(); console.log(k.hasOwnProperty('name')); // trueconsole.log('name' in k); // true console.log(k.hasOwnProperty('eyes')); // falseconsole.log('eyes' in k); // true console.log(('name' in k) && !k.has..