๐ย Reference
๐ย Chapter
Object.proptotype.hasOwnProperty()
Relational operators
Object.hasOwn()
- Object.hasOwn()
- Object.hasOwn() ์ ์ ๋ฉ์๋๋ ์ง์ ๋ ๊ฐ์ฒด๊ฐ ์ง์ ๋ ์์ฑ์ ์์ฒด ์์ฑ์ผ๋ก ๊ฐ์ง๊ณ ์๋ ๊ฒฝ์ฐ true๋ฅผ ๋ฐํํ๋ค.
- ์์ฑ์ด ์์๋๊ฑฐ๋ ์กด์ฌํ์ง ์๋ ๊ฒฝ์ฐ ๋ฉ์๋๋ false๋ฅผ ๋ฐํํ๋ค.
Object.hasOwn(target, property);
array ์ ๊ฒฝ์ฐ
const arr = ['apple', 'orange', 'banana'];
console.log(Object.hasOwn(arr, 1)); // true
console.log(Object.hasOwn(arr, 'apple')); // false
string ์ ๊ฒฝ์ฐ
- new ์์ฑ์๋ฅผ ์ด์ฉํด String์ ์ ์ธํ๋ฉด, length ์์ฑ์ด ์๋์ง ์ฒดํฌํ ์ ์๋ค.
const text = new String('hello');
console.log(Object.hasOwn(text, 'length')); // true