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