We're a place where coders share, stay up-to-date and grow their careers.
let Object.prototype.hasOwnProperty() to the rescue
if (obj.hasOwnProperty('a')) { }
Yeah, thanks for mentioning this method. But using hasOwnProperty will console.log different result in the post's example, so use it with caution.
hasOwnProperty
let Object.prototype.hasOwnProperty() to the rescue
Yeah, thanks for mentioning this method. But using
hasOwnProperty
will console.log different result in the post's example, so use it with caution.