๐Ÿ“šย Reference


๐Ÿ“œย Chapter


Object.proptotype.hasOwnProperty()

Relational operators

Object.hasOwn()


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 ์˜ ๊ฒฝ์šฐ


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