Answers for "how to know if a property exist in a object"

5

How to tell if an attribute exists on an object

const user = {
    name: "Sicrano",
    age: 14
}

user.hasOwnProperty('name');       // Retorna true
user.hasOwnProperty('age');        // Retorna true
user.hasOwnProperty('gender');     // Retorna false
user.hasOwnProperty('address');    // Retorna false
Posted by: Guest on October-26-2020
9

how to check wether the property exist in a object in java script

if (obj.hasOwnProperty('prop')) {
    // do something
}
Posted by: Guest on May-26-2020

Code answers related to "how to know if a property exist in a object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language