Answers for "check if property exists in objects javascript"

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
1

test if property exists javascript

const hero = {
  name: 'Batman'
};

hero.hasOwnProperty('name');     // => true
hero.hasOwnProperty('realName'); // => false
Posted by: Guest on November-23-2020

Code answers related to "check if property exists in objects javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language