Answers for "short form check if object and object property exists javascript &."

4

javascript check if object property exists

var person = {'first_name': 'bill','age':20};

if ( person.hasOwnProperty('first_name') ) {
    //person has a first_name property
}
Posted by: Guest on July-23-2019
0

Check object property exists or not in js

const user1 = {
	username: "john"
};
const user2 = {
	username: "duo"
    authority: "grepper"
}
// check object property
console.log(user1.hasOwnProperty('authority')); // false
console.log(user2.hasOwnProperty('authority')); // true
Posted by: Guest on February-06-2022

Code answers related to "short form check if object and object property exists javascript &."

Code answers related to "Javascript"

Browse Popular Code Answers by Language