๐Ÿ“šย Reference


๐Ÿ“œย Chapter


Relational operators

Object.hasOwn()

Object.proptotype.hasOwnProperty()


array์˜ ๊ฒฝ์šฐ


const arr = ['apple', 'orange', 'banana'];

console.log(arr.hasOwnProperty(1)); // true
console.log(arr.hasOwnProperty('apple')); // false

string์˜ ๊ฒฝ์šฐ


const text = new String('hello');
console.log(text.hasOwnProperty('length')); // true