Answers for "java «script know if exists an object with some atribute"

12

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
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 "java «script know if exists an object with some atribute"

Code answers related to "Javascript"

Browse Popular Code Answers by Language