Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

hasOwnProperty

//
//2021 - Object.hasOwn as a replacement for Object.hasOwnProperty()

//As other answers indicated, hasOwnProperty will check for an object own properties in contrast to in which will also check for inherited properties.

//There is a new alternative method called Object.hasOwn() and is intended to be a replacement for Object.hasOwnProperty()**

const person = { name: 'dan' };

console.log(Object.hasOwn(person, 'name'));// true
console.log(Object.hasOwn(person, 'age'));// false

const person2 = Object.create({gender: 'male'});

console.log(Object.hasOwn(person2, 'gender'));// false
 Run code snippet
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #hasOwnProperty
ADD COMMENT
Topic
Name
8+9 =